wok view mdp/receipt @ rev 17215

Add mdp
author Paul Issott <paul@slitaz.org>
date Sat Oct 11 10:50:31 2014 +0100 (2014-10-11)
parents
children cc6bbcf323fa
line source
1 # SliTaz package receipt.
3 PACKAGE="mdp"
4 VERSION="0.91.3"
5 CATEGORY="office"
6 SHORT_DESC="A command-line based markdown presentation tool."
7 MAINTAINER="paul@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.bz2"
9 WEB_SITE="https://github.com/visit1985/mdp"
10 WGET_URL="git|git://github.com/visit1985/mdp"
12 DEPENDS="ncurses"
13 BUILD_DEPENDS="ncurses-dev git bzip2"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 make
19 make DESTDIR=$DESTDIR install
20 }
22 # Rules to gen a SliTaz package suitable for Tazpkg.
23 genpkg_rules()
24 {
25 mkdir -p $fs/usr/bin $fs/usr/share/mdp
26 cp -a $install/$PACKAGE $fs/usr/bin
27 cp -a $src/*.md $fs/usr/share/mdp
28 }