wok-next view mdp/receipt @ rev 18985

Add: Backgrounds created by the community. See: https://github.com/hackdorte/slitaz-community-backgrounds
author Leonardo Laporte <hackdorte@sapo.pt>
date Thu Mar 17 00:11:28 2016 -0300 (2016-03-17)
parents 6880673c44a1
children d5aab818505e
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 LICENSE="GPL3"
9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
10 WEB_SITE="https://github.com/visit1985/mdp"
11 WGET_URL="git|git://github.com/visit1985/mdp"
13 DEPENDS="ncurses"
14 BUILD_DEPENDS="ncurses-dev git bzip2"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 make
20 make DESTDIR=$DESTDIR install
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 mkdir -p $fs/usr/bin $fs/usr/share/mdp
27 cp -a $install/$PACKAGE $fs/usr/bin
28 cp -a $src/*.md $fs/usr/share/mdp
29 }