wok annotate perl-compress-raw-zlib/receipt @ rev 20255

firefox, thunderbird: try to force i686
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Mar 13 21:40:37 2018 +0100 (2018-03-13)
parents 41b15374a1b2
children 20661c276bcf
rev   line source
erjo@2648 1 # SliTaz package receipt.
erjo@2648 2
erjo@2648 3 PACKAGE="perl-compress-raw-zlib"
erjo@11831 4 VERSION="2.051"
erjo@2648 5 CATEGORY="development"
erjo@2648 6 SHORT_DESC="PERL low-level interface to Zlib"
erjo@2648 7 MAINTAINER="erjo@slitaz.org"
pascal@14702 8 LICENSE="GPL"
erjo@2648 9 DEPENDS="perl"
erjo@2648 10 BUILD_DEPENDS="perl"
erjo@2648 11 SOURCE="Compress-Raw-Zlib"
erjo@2648 12 TARBALL="$SOURCE-$VERSION.tar.gz"
erjo@2648 13 WEB_SITE="http://cpan.org/"
erjo@2648 14 WGET_URL="http://search.cpan.org/CPAN/authors/id/P/PM/PMQS/$TARBALL"
erjo@2648 15
erjo@2648 16 # Rules to configure and make the package.
erjo@2648 17 compile_rules()
erjo@2648 18 {
erjo@2648 19 cd $src
erjo@2648 20 perl Makefile.PL
erjo@2648 21 make
pascal@14702 22 make DESTDIR=$DESTDIR install
erjo@2648 23 }
erjo@2648 24
erjo@2648 25 # Rules to gen a SliTaz package suitable for Tazpkg.
erjo@2648 26 genpkg_rules()
erjo@2648 27 {
erjo@2648 28 mkdir -p $fs/usr
pascal@14702 29 cp -a $install/usr/lib $fs/usr
erjo@2648 30 }
erjo@2648 31