# HG changeset patch # User Pascal Bellard # Date 1234722026 0 # Node ID 7e797181d0c713a5e6dc2f1e9e89bc3740e13918 # Parent 4ef022fd5963ae2c084f64313debe5aaa95ba238 Add perl-text-aspell diff -r 4ef022fd5963 -r 7e797181d0c7 perl-text-aspell/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/perl-text-aspell/receipt Sun Feb 15 18:20:26 2009 +0000 @@ -0,0 +1,31 @@ +# SliTaz package receipt. + +PACKAGE="perl-text-aspell" +VERSION="0.09" +CATEGORY="development" +SHORT_DESC="Text::Aspell module is a Perl extension." +MAINTAINER="pascal.bellard@slitaz.org" +DEPENDS="perl aspell" +BUILD_DEPENDS="perl aspell aspell-dev" +SOURCE="Text-Aspell" +TARBALL="$SOURCE-$VERSION.tar.gz" +WEB_SITE="http://www.cpan.org/modules/" +WGET_URL="http://search.cpan.org/CPAN/authors/id/H/HA/HANK/$TARBALL" + +# Rules to configure and make the package. +compile_rules() +{ + mv $SOURCE $src 2> /dev/null + cd $src + 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 +} +