wok-6.x annotate pem/receipt @ rev 19805
libcaca: do not call cook install compile_rules (setup broken by bdeps)
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Sun Feb 26 09:43:31 2017 +0100 (2017-02-26) |
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 |