wok-next diff perl-text-aspell/receipt @ rev 20800

apngopt: typo
author Aleksej Bobylev <al.bobylev@gmail.com>
date Tue Jun 12 01:07:56 2018 +0300 (2018-06-12)
parents dfb3d7f1daed
children 4e6503d7a19f
line diff
     1.1 --- a/perl-text-aspell/receipt	Wed Jun 14 09:51:23 2017 +0300
     1.2 +++ b/perl-text-aspell/receipt	Tue Jun 12 01:07:56 2018 +0300
     1.3 @@ -2,31 +2,29 @@
     1.4  
     1.5  PACKAGE="perl-text-aspell"
     1.6  VERSION="0.09"
     1.7 -CATEGORY="development"
     1.8 -SHORT_DESC="Text::Aspell module is a Perl extension."
     1.9 +CATEGORY="perl"
    1.10 +SHORT_DESC="Text::Aspell - Perl interface to the GNU Aspell library"
    1.11  MAINTAINER="pascal.bellard@slitaz.org"
    1.12  LICENSE="GPL"
    1.13 +WEB_SITE="https://metacpan.org/release/Text-Aspell"
    1.14 +
    1.15 +TARBALL="Text-Aspell-$VERSION.tar.gz"
    1.16 +WGET_URL="https://cpan.metacpan.org/authors/id/H/HA/HANK/$TARBALL"
    1.17 +
    1.18  DEPENDS="perl aspell gcc-lib-base"
    1.19  BUILD_DEPENDS="perl-dev aspell aspell-dev"
    1.20 -SOURCE="Text-Aspell"
    1.21 -TARBALL="$SOURCE-$VERSION.tar.gz"
    1.22 -WEB_SITE="http://www.cpan.org/modules/"
    1.23 -WGET_URL="http://search.cpan.org/CPAN/authors/id/H/HA/HANK/$TARBALL"
    1.24  
    1.25  # Rules to configure and make the package.
    1.26  compile_rules()
    1.27  {
    1.28 -	mv $SOURCE $src 2> /dev/null
    1.29 -	cd $src
    1.30  	perl Makefile.PL &&
    1.31 -	make &&
    1.32 -	make DESTDIR=$DESTDIR install
    1.33 +	make && make DESTDIR=$install install &&
    1.34 +
    1.35 +	chmod -R u+w $install
    1.36  }
    1.37  
    1.38  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.39  genpkg_rules()
    1.40  {
    1.41 -	mkdir -p $fs/usr
    1.42 -	cp -a $install/usr/lib $fs/usr
    1.43 +	copy @std
    1.44  }
    1.45 -