wok view reiserfsprogs/receipt @ rev 3473

get-softmodem-driver: Add support for Smart Link modem
author Dominique Corbex <domcox@users.sourceforge.net>
date Tue Jun 16 21:41:05 2009 +0200 (2009-06-16)
parents 3c46706775f3
children 0588160a6878
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 libuuid"
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 }