fixed heap-buffer-overflow in url_count_inline, fixes #122
[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 # Build dependencies only
17 DEPEND="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
23 src_compile() {
24         cd ${S}
25         cygmake
26 }
27
28 src_install() {
29         cd ${S}
30         PREFIX=/usr cyginstall
31 }
32
33 src_test() { :; }
34