wok view quilt/receipt @ rev 18106

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