wok view reiser4progs/receipt @ rev 15259

yaws: remove some error triggers
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Sep 24 10:24:05 2013 +0000 (2013-09-24)
parents bbd76bb81d25
children 23b382a886ad
line source
1 # SliTaz package receipt.
3 PACKAGE="reiser4progs"
4 VERSION="1.0.7"
5 CATEGORY="system-tools"
6 SHORT_DESC="Utilities for manipulating reiser4 file-system."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
10 WEB_SITE="http://www.kernel.org/"
11 WGET_URL="http://piotrkosoft.net/pub/unix/linux/utils/fs/reiser4/$PACKAGE/$TARBALL"
12 TAGS="filesystem reiserfs"
14 DEPENDS="libaal util-linux-uuid ncurses readline"
15 BUILD_DEPENDS="libaal libaal-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 cd $src
21 ./configure --prefix=/usr --infodir=/usr/share/info \
22 --mandir=/usr/share/man $CONFIGURE_ARGS &&
23 make $MAKEFLAGS &&
24 make DESTDIR=$DESTDIR install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr/lib
31 cp -a $install/usr/sbin $fs/usr
32 cp -a $install/usr/lib/*.so* $fs/usr/lib
33 }