Codebase list mdp-src / 9d962b38-e9e6-4aac-9082-f22b3a066dac/upstream mdp.cygport
9d962b38-e9e6-4aac-9082-f22b3a066dac/upstream

Tree @9d962b38-e9e6-4aac-9082-f22b3a066dac/upstream (Download .tar.gz)

mdp.cygport @9d962b38-e9e6-4aac-9082-f22b3a066dac/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() { :; }