From: Michael Göhler Date: Fri, 30 Dec 2016 14:49:27 +0000 (+0100) Subject: cygport definition for #112 X-Git-Url: https://git.danieliu.xyz/?p=smdp.git;a=commitdiff_plain;h=e3566c8aff14a38df8fee4af4336d57849995cfd cygport definition for #112 --- diff --git a/mdp.cygport b/mdp.cygport new file mode 100644 index 0000000..edb3b9a --- /dev/null +++ b/mdp.cygport @@ -0,0 +1,29 @@ +# 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" + +# custom src_compile, src_install and src_test + +src_compile() { + cd ${S} + cygmake +} + +src_install() { + cd ${S} + cyginstall +} + +src_test() { :; } +