wok annotate reiser4progs/receipt @ rev 6124

tazbb : typo
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Sep 05 15:13:29 2010 +0200 (2010-09-05)
parents 8be66f03fbd2
children 8e4c74abdf74
rev   line source
pascal@1689 1 # SliTaz package receipt.
pascal@1689 2
pascal@1689 3 PACKAGE="reiser4progs"
pankso@4066 4 VERSION="1.0.7"
pascal@1689 5 CATEGORY="system-tools"
pascal@1689 6 SHORT_DESC="Utilities for manipulating reiser4 file-system."
pascal@1689 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@1689 8 TARBALL="$PACKAGE-$VERSION.tar.bz2"
pascal@1689 9 WEB_SITE="http://www.kernel.org/"
pascal@1689 10 WGET_URL="http://www.kernel.org/pub/linux/utils/fs/reiser4/$PACKAGE/$TARBALL"
pankso@4052 11 DEPENDS="libaal util-linux-ng-uuid ncurses readline"
pascal@1689 12 BUILD_DEPENDS="libaal libaal-dev"
jozee@4972 13 TAGS="filesystem reiserfs"
pascal@1689 14
pascal@1689 15 # Rules to configure and make the package.
pascal@1689 16 compile_rules()
pascal@1689 17 {
pascal@1689 18 cd $src
pascal@1689 19 ./configure --prefix=/usr --infodir=/usr/share/info \
pascal@1689 20 --mandir=/usr/share/man $CONFIGURE_ARGS &&
pascal@5778 21 make -j 4 &&
pascal@1689 22 make DESTDIR=$PWD/_pkg install
pascal@1689 23 }
pascal@1689 24
pascal@1689 25 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@1689 26 genpkg_rules()
pascal@1689 27 {
pascal@1689 28 mkdir -p $fs/usr/lib
pascal@1689 29 cp -a $_pkg/usr/sbin $fs/usr
pascal@1689 30 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
pascal@1689 31 }
pascal@1689 32