wok annotate quilt/receipt @ rev 20603
Update iptraf & gcc3
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Mon Dec 17 12:19:32 2018 +0100 (2018-12-17) |
parents | |
children | 3d14781acd29 |
rev | line source |
---|---|
pascal@17816 | 1 # SliTaz package receipt. |
pascal@17816 | 2 |
pascal@17816 | 3 PACKAGE="quilt" |
pascal@17816 | 4 VERSION="0.64" |
pascal@17816 | 5 CATEGORY="development" |
pascal@17816 | 6 SHORT_DESC="Easily manage large numbers of patches." |
pascal@17816 | 7 MAINTAINER="pascal.bellard@slitaz.org" |
pascal@17816 | 8 LICENSE="GPL2" |
pascal@17816 | 9 TARBALL="$PACKAGE-$VERSION.tar.gz" |
pascal@17816 | 10 WEB_SITE="http://savannah.nongnu.org/projects/quilt" |
pascal@17816 | 11 WGET_URL="http://download.savannah.gnu.org/releases/$PACKAGE/$TARBALL" |
pascal@17816 | 12 |
pascal@17816 | 13 DEPENDS="bash perl" |
pascal@17816 | 14 BUILD_DEPENDS="diffutils" |
pascal@17816 | 15 |
pascal@17816 | 16 # Rules to configure and make the package. |
pascal@17816 | 17 compile_rules() |
pascal@17816 | 18 { |
pascal@17816 | 19 ./configure --prefix=/usr $CONFIGURE_ARGS && |
pascal@17816 | 20 make && |
pascal@17816 | 21 make BUILD_ROOT=$DESTDIR install |
pascal@17816 | 22 } |
pascal@17816 | 23 |
pascal@17816 | 24 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@17816 | 25 genpkg_rules() |
pascal@17816 | 26 { |
pascal@17816 | 27 mkdir -p $fs/usr/share |
pascal@17816 | 28 cp -a $install/usr/share/quilt $fs/usr/share/ |
pascal@17816 | 29 cp -a $install/usr/bin $fs/usr/ |
pascal@17816 | 30 cp -a $install/etc $fs/ |
pascal@17816 | 31 } |