wok annotate pem/receipt @ rev 18897

syslinux/isohybrid.exe add -r support
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Feb 14 22:06:06 2016 +0100 (2016-02-14)
parents
children 71360a13cd94
rev   line source
paul@18137 1 # SliTaz package receipt.
paul@18137 2
paul@18137 3 PACKAGE="pem"
paul@18137 4 VERSION="0.7.9"
paul@18137 5 CATEGORY="utilities"
paul@18137 6 SHORT_DESC="GNU Personal Expenses Manager."
paul@18137 7 MAINTAINER="paul@slitaz.org"
paul@18137 8 LICENSE="GPL3"
paul@18137 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
paul@18137 10 WEB_SITE="http://www.gnu.org/software/pem/"
paul@18137 11 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL"
paul@18137 12
paul@18137 13 DEPENDS="perl"
paul@18137 14 BUILD_DEPENDS="perl"
paul@18137 15
paul@18137 16 # Rules to configure and make the package.
paul@18137 17 compile_rules()
paul@18137 18 {
paul@18137 19 ./configure \
paul@18137 20 --prefix=/usr \
paul@18137 21 $CONFIGURE_ARGS &&
paul@18137 22 make && make DESTDIR=$DESTDIR install
paul@18137 23 }
paul@18137 24
paul@18137 25 # Rules to gen a SliTaz package suitable for Tazpkg.
paul@18137 26 genpkg_rules()
paul@18137 27 {
paul@18137 28 mkdir -p $fs/usr/share
paul@18137 29 cp -a $install/usr/bin $fs/usr
paul@18137 30 cp -a $install/usr/share/pem $fs/usr/share
paul@18137 31 }
paul@18137 32