wok rev 17215
Add mdp
author | Paul Issott <paul@slitaz.org> |
---|---|
date | Sat Oct 11 10:50:31 2014 +0100 (2014-10-11) |
parents | 2a96a678fd4c |
children | cc6bbcf323fa |
files | mdp/receipt |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/mdp/receipt Sat Oct 11 10:50:31 2014 +0100 1.3 @@ -0,0 +1,29 @@ 1.4 +# SliTaz package receipt. 1.5 + 1.6 +PACKAGE="mdp" 1.7 +VERSION="0.91.3" 1.8 +CATEGORY="office" 1.9 +SHORT_DESC="A command-line based markdown presentation tool." 1.10 +MAINTAINER="paul@slitaz.org" 1.11 +TARBALL="$PACKAGE-$VERSION.tar.bz2" 1.12 +WEB_SITE="https://github.com/visit1985/mdp" 1.13 +WGET_URL="git|git://github.com/visit1985/mdp" 1.14 + 1.15 +DEPENDS="ncurses" 1.16 +BUILD_DEPENDS="ncurses-dev git bzip2" 1.17 + 1.18 +# Rules to configure and make the package. 1.19 +compile_rules() 1.20 +{ 1.21 + make 1.22 + make DESTDIR=$DESTDIR install 1.23 +} 1.24 + 1.25 +# Rules to gen a SliTaz package suitable for Tazpkg. 1.26 +genpkg_rules() 1.27 +{ 1.28 + mkdir -p $fs/usr/bin $fs/usr/share/mdp 1.29 + cp -a $install/$PACKAGE $fs/usr/bin 1.30 + cp -a $src/*.md $fs/usr/share/mdp 1.31 +} 1.32 +