wok view perl-text-aspell/receipt @ rev 14702

perl, rrdtool: add LICENSE
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Jun 07 18:46:07 2013 +0200 (2013-06-07)
parents f3327707164a
children 20661c276bcf
line source
1 # SliTaz package receipt.
3 PACKAGE="perl-text-aspell"
4 VERSION="0.09"
5 CATEGORY="development"
6 SHORT_DESC="Text::Aspell module is a Perl extension."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL"
9 DEPENDS="perl aspell gcc-lib-base"
10 BUILD_DEPENDS="perl aspell aspell-dev"
11 SOURCE="Text-Aspell"
12 TARBALL="$SOURCE-$VERSION.tar.gz"
13 WEB_SITE="http://www.cpan.org/modules/"
14 WGET_URL="http://search.cpan.org/CPAN/authors/id/H/HA/HANK/$TARBALL"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 mv $SOURCE $src 2> /dev/null
20 cd $src
21 perl Makefile.PL &&
22 make &&
23 make DESTDIR=$DESTDIR install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr
30 cp -a $install/usr/lib $fs/usr
31 }