wok annotate reiserfsprogs/receipt @ rev 17001
linux-cloop: apply patch
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Mon Aug 11 16:36:05 2014 +0200 (2014-08-11) |
parents | 73641efed1cc |
children | 7f78f61de159 |
rev | line source |
---|---|
erjo@539 | 1 # SliTaz package receipt. |
erjo@539 | 2 |
erjo@539 | 3 PACKAGE="reiserfsprogs" |
erjo@4697 | 4 VERSION="3.6.21" |
erjo@539 | 5 CATEGORY="system-tools" |
erjo@539 | 6 SHORT_DESC="ReiserFS tools" |
erjo@784 | 7 MAINTAINER="erjo@slitaz.org" |
pascal@15000 | 8 LICENSE="GPL2" |
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" |
jozee@4972 | 12 TAGS="filesystem reiserfs" |
erjo@539 | 13 |
pascal@15000 | 14 DEPENDS="linux-reiserfs util-linux-uuid" |
pascal@15000 | 15 |
erjo@539 | 16 # Rules to configure and make the package. |
erjo@539 | 17 compile_rules() |
erjo@539 | 18 { |
erjo@539 | 19 cd $src |
erjo@539 | 20 ./configure --prefix=/usr --sbindir=/sbin \ |
pascal@2447 | 21 --mandir=/usr/share/man $CONFIGURE_ARGS && |
pascal@2447 | 22 make && |
pascal@15000 | 23 make DESTDIR=$DESTDIR install |
erjo@539 | 24 } |
erjo@539 | 25 |
erjo@539 | 26 # Rules to gen a SliTaz package suitable for Tazpkg. |
erjo@539 | 27 genpkg_rules() |
erjo@539 | 28 { |
erjo@539 | 29 mkdir -p $fs |
pascal@15000 | 30 cp -a $install/sbin $fs/ |
erjo@539 | 31 } |
erjo@539 | 32 |