wok annotate reiserfsprogs/receipt @ rev 2670

Fix: php BUILD_DEPENDS
author Eric Joseph-Alexandre <erjo@slitaz.org>
date Mon Apr 20 15:47:52 2009 +0200 (2009-04-20)
parents 3c46706775f3
children 0588160a6878
rev   line source
erjo@539 1 # SliTaz package receipt.
erjo@539 2
erjo@539 3 PACKAGE="reiserfsprogs"
erjo@539 4 VERSION="3.6.20"
erjo@539 5 CATEGORY="system-tools"
erjo@539 6 SHORT_DESC="ReiserFS tools"
erjo@784 7 MAINTAINER="erjo@slitaz.org"
pascal@2447 8 DEPENDS="linux-reiserfs libuuid"
erjo@539 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
erjo@539 10 WEB_SITE="http://www.sfr-fresh.com/linux/misc/"
erjo@539 11 WGET_URL="http://www.sfr-fresh.com/linux/misc/$TARBALL"
erjo@539 12
erjo@539 13 # Rules to configure and make the package.
erjo@539 14 compile_rules()
erjo@539 15 {
erjo@539 16 cd $src
erjo@539 17 ./configure --prefix=/usr --sbindir=/sbin \
pascal@2447 18 --mandir=/usr/share/man $CONFIGURE_ARGS &&
pascal@2447 19 make &&
erjo@539 20 make DESTDIR=$PWD/_pkg install
erjo@539 21 }
erjo@539 22
erjo@539 23 # Rules to gen a SliTaz package suitable for Tazpkg.
erjo@539 24 genpkg_rules()
erjo@539 25 {
erjo@539 26 mkdir -p $fs
erjo@539 27 cp -a $_pkg/sbin $fs/
erjo@539 28
erjo@539 29 strip -s $fs/sbin/*
erjo@539 30 }
erjo@539 31