Codebase list mdp-src / cc1d2727-3380-4766-b176-04e98daeb940/upstream mdp.cygport
cc1d2727-3380-4766-b176-04e98daeb940/upstream

Tree @cc1d2727-3380-4766-b176-04e98daeb940/upstream (Download .tar.gz)

mdp.cygport @cc1d2727-3380-4766-b176-04e98daeb940/upstreamraw · history · blame

# package name
NAME="mdp"
VERSION=1.0.9
RELEASE=1

# .hint generation
CATEGORY="Utils"
SUMMARY="A command-line based markdown presentation tool"
DESCRIPTION="A ncurses-based command-line presentation tool, which makes
it easy to create slides using the popular markdown format."

# source and patch files
SRC_URI="https://github.com/visit1985/mdp/archive/${VERSION}.tar.gz"
DOCS="sample.md"

# Build dependencies only
DEPEND="gcc-core libncurses-devel make"
# runtime deps to go in setup.hint
#REQUIRES="libncursesw10"

# custom src_compile, src_install and src_test

src_compile() {
	cd ${S}
	cygmake
}

src_install() {
	cd ${S}
	PREFIX=/usr cyginstall
}

src_test() { :; }