From e3566c8aff14a38df8fee4af4336d57849995cfd Mon Sep 17 00:00:00 2001 From: =?utf8?q?Michael=20G=C3=B6hler?= Date: Fri, 30 Dec 2016 15:49:27 +0100 Subject: [PATCH] cygport definition for #112 --- mdp.cygport | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 mdp.cygport 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() { :; } + -- 2.20.1