# SliTaz package receipt.

PACKAGE="perl-bit-vector"
VERSION="7.1"
CATEGORY="development"
SHORT_DESC="Efficient bit vector, set of integers and big int math library"
MAINTAINER="slaxemulator@gmail.com"
DEPENDS="perl perl-carp-clan"
BUILD_DEPENDS="$DEPENDS"
SOURCE="Bit-Vector"
TARBALL="$SOURCE-$VERSION.tar.gz"
WEB_SITE="http://search.cpan.org/dist/Bit-Vector/"
WGET_URL="http://search.cpan.org/CPAN/authors/id/S/ST/STBEY/$TARBALL"

# Rules to configure and make the package.
compile_rules()
{
	cd $src
	perl Makefile.PL &&
	make &&
	make install DESTDIR=$DESTDIR
}

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