# SliTaz package receipt.

PACKAGE="reiserfsprogs"
VERSION="3.6.21"
CATEGORY="system-tools"
SHORT_DESC="ReiserFS tools"
MAINTAINER="erjo@slitaz.org"
DEPENDS="linux-reiserfs util-linux-ng-uuid"
TARBALL="$PACKAGE-$VERSION.tar.gz"
WEB_SITE="http://www.sfr-fresh.com/linux/misc/"
WGET_URL="http://www.sfr-fresh.com/linux/misc/$TARBALL"
TAGS="filesystem reiserfs"

# Rules to configure and make the package.
compile_rules()
{
	cd $src
	./configure --prefix=/usr --sbindir=/sbin \
	--mandir=/usr/share/man $CONFIGURE_ARGS &&
	make &&
	make DESTDIR=$PWD/_pkg install
}

# Rules to gen a SliTaz package suitable for Tazpkg.
genpkg_rules()
{
	mkdir -p $fs
	cp -a $_pkg/sbin $fs/
}