# SliTaz package receipt.

PACKAGE="perl-text-csv"
VERSION="1.20"
CATEGORY="development"
SHORT_DESC="Manipulate comma-separated value strings."
MAINTAINER="slaxemulator@gmail.com"
DEPENDS="perl"
BUILD_DEPENDS="perl"
SOURCE="Text-CSV"
TARBALL="$SOURCE-$VERSION.tar.gz"
WEB_SITE="http://search.cpan.org/dist/Text-CSV/"
WGET_URL="http://search.cpan.org/CPAN/authors/id/M/MA/MAKAMAKA/$TARBALL"

# Rules to configure and make the package.
compile_rules()
{
	cd $src
	PERL_MM_USE_DEFAULT=1 perl Makefile.PL
	make
	make DESTDIR="$PWD/_pkg" install
}

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

	find $fs -name '.packlist' -delete
	find $fs -name '*.pod' -delete

}