wok view quilt/receipt @ rev 21749

updated quilt (0.64 -> 0.66)
author Hans-G?nter Theisgen
date Fri Jun 14 17:38:01 2019 +0100 (2019-06-14)
parents 85a0c2661408
children 17091bc7c301
line source
1 # SliTaz package receipt.
3 PACKAGE="quilt"
4 VERSION="0.66"
5 CATEGORY="development"
6 SHORT_DESC="Easily manage large numbers of patches."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="https://savannah.nongnu.org/projects/quilt"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="http://download.savannah.gnu.org/releases/$PACKAGE/$TARBALL"
14 DEPENDS="bash perl"
15 BUILD_DEPENDS="diffutils sed"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 ./configure \
21 --prefix=/usr \
22 --sysconfdir=/etc \
23 $CONFIGURE_ARGS &&
24 make &&
25 make BUILD_ROOT=$DESTDIR install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $fs/usr/share
33 cp -a $install/usr/share/quilt $fs/usr/share/
34 cp -a $install/usr/bin $fs/usr/
35 cp -a $install/etc $fs/
36 }