wok view reiserfsprogs/receipt @ rev 1203

postfix: set default localhost
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Aug 08 16:47:03 2008 +0000 (2008-08-08)
parents a075ff895254
children c6efda65d904
line source
1 # SliTaz package receipt.
3 PACKAGE="reiserfsprogs"
4 VERSION="3.6.20"
5 CATEGORY="system-tools"
6 SHORT_DESC="ReiserFS tools"
7 MAINTAINER="erjo@slitaz.org"
8 DEPENDS="linux-reiserfs"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://www.sfr-fresh.com/linux/misc/"
11 WGET_URL="http://www.sfr-fresh.com/linux/misc/$TARBALL"
13 # Rules to configure and make the package.
14 compile_rules()
15 {
16 cd $src
17 ./configure --prefix=/usr --sbindir=/sbin \
18 --mandir=/usr/share/man $CONFIGURE_ARGS
19 make
20 make DESTDIR=$PWD/_pkg install
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 mkdir -p $fs
27 cp -a $_pkg/sbin $fs/
29 strip -s $fs/sbin/*
30 }