wok annotate quilt/receipt @ rev 21800

guvcview: update bdeps
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Aug 10 14:24:44 2019 +0200 (2019-08-10)
parents 85a0c2661408
children 17091bc7c301
rev   line source
pascal@17816 1 # SliTaz package receipt.
pascal@17816 2
pascal@17816 3 PACKAGE="quilt"
Hans-G?nter@21749 4 VERSION="0.66"
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"
Hans-G?nter@21749 9 WEB_SITE="https://savannah.nongnu.org/projects/quilt"
Hans-G?nter@21749 10
pascal@17816 11 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@17816 12 WGET_URL="http://download.savannah.gnu.org/releases/$PACKAGE/$TARBALL"
pascal@17816 13
pascal@17816 14 DEPENDS="bash perl"
Hans-G?nter@21749 15 BUILD_DEPENDS="diffutils sed"
pascal@17816 16
pascal@17816 17 # Rules to configure and make the package.
pascal@17816 18 compile_rules()
pascal@17816 19 {
Hans-G?nter@21749 20 ./configure \
Hans-G?nter@21749 21 --prefix=/usr \
Hans-G?nter@21749 22 --sysconfdir=/etc \
Hans-G?nter@21749 23 $CONFIGURE_ARGS &&
pascal@17816 24 make &&
pascal@17816 25 make BUILD_ROOT=$DESTDIR install
pascal@17816 26 }
pascal@17816 27
pascal@17816 28 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@17816 29 genpkg_rules()
pascal@17816 30 {
pascal@17816 31 mkdir -p $fs/usr/share
Hans-G?nter@21749 32
Hans-G?nter@21749 33 cp -a $install/usr/share/quilt $fs/usr/share/
Hans-G?nter@21749 34 cp -a $install/usr/bin $fs/usr/
Hans-G?nter@21749 35 cp -a $install/etc $fs/
pascal@17816 36 }