cygport definition for #112
[smdp.git] / mdp.cygport
1 # package name
2 NAME="mdp"
3 VERSION=1.0.9
4 RELEASE=1
5
6 # .hint generation
7 CATEGORY="Utils"
8 SUMMARY="A command-line based markdown presentation tool"
9 DESCRIPTION="A ncurses-based command-line presentation tool, which makes
10 it easy to create slides using the popular markdown format."
11
12 # source and patch files
13 SRC_URI="https://github.com/visit1985/mdp/archive/${VERSION}.tar.gz"
14 DOCS="sample.md"
15
16 # custom src_compile, src_install and src_test
17
18 src_compile() {
19         cd ${S}
20         cygmake
21 }
22
23 src_install() {
24         cd ${S}
25         cyginstall
26 }
27
28 src_test() { :; }
29