1# package name
2NAME="mdp"
3VERSION=1.0.9
4RELEASE=1
5
6# .hint generation
7CATEGORY="Utils"
8SUMMARY="A command-line based markdown presentation tool"
9DESCRIPTION="A ncurses-based command-line presentation tool, which makes
10it easy to create slides using the popular markdown format."
11
12# source and patch files
13SRC_URI="https://github.com/visit1985/mdp/archive/${VERSION}.tar.gz"
14DOCS="sample.md"
15
16# Build dependencies only
17DEPEND="gcc-core libncurses-devel make"
18# runtime deps to go in setup.hint
19#REQUIRES="libncursesw10"
20
21# custom src_compile, src_install and src_test
22
23src_compile() {
24	cd ${S}
25	cygmake
26}
27
28src_install() {
29	cd ${S}
30	PREFIX=/usr cyginstall
31}
32
33src_test() { :; }
34
35