wok rev 20467

Add perl-universal-require & perl-file-which (thanks neoclust3)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Oct 11 17:45:57 2018 +0200 (2018-10-11)
parents 783d6baff05e
children 69aba9808052
files fusioninventory-agent/receipt perl-file-which/receipt perl-universal-require/receipt
line diff
     1.1 --- a/fusioninventory-agent/receipt	Thu Oct 11 13:32:26 2018 +0200
     1.2 +++ b/fusioninventory-agent/receipt	Thu Oct 11 17:45:57 2018 +0200
     1.3 @@ -10,9 +10,9 @@
     1.4  WEB_SITE="http://fusioninventory.org/"
     1.5  WGET_URL="https://github.com/fusioninventory/$PACKAGE/releases/download/$VERSION/$TARBALL"
     1.6  
     1.7 -DEPENDS="perl-http-server-simple perl-io-socket-ssl perl-ipc-run \
     1.8 +DEPENDS="perl-file-which perl-http-server-simple perl-io-socket-ssl perl-ipc-run \
     1.9  perl-net-ip perl-net-snmp perl-test-deep perl-test-exception \
    1.10 -perl-test-nowarnings perl-text-template"
    1.11 +perl-test-nowarnings perl-text-template perl-universal-require"
    1.12  BUILD_DEPENDS="$DEPENDS"
    1.13  
    1.14  # Rules to configure and make the package.
     2.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     2.2 +++ b/perl-file-which/receipt	Thu Oct 11 17:45:57 2018 +0200
     2.3 @@ -0,0 +1,28 @@
     2.4 +# SliTaz package receipt.
     2.5 +
     2.6 +PACKAGE="perl-file-which"
     2.7 +VERSION="1.22"
     2.8 +CATEGORY="development"
     2.9 +SHORT_DESC="File::Which module is a Perl extension"
    2.10 +MAINTAINER="devel@slitaz.org"
    2.11 +LICENSE="GPL"
    2.12 +DEPENDS="perl"
    2.13 +BUILD_DEPENDS="perl"
    2.14 +SOURCE="File-Which"
    2.15 +TARBALL="$SOURCE-$VERSION.tar.gz"
    2.16 +WEB_SITE="http://cpan.org/"
    2.17 +WGET_URL="https://cpan.metacpan.org/authors/id/P/PL/PLICEASE/$TARBALL"
    2.18 +
    2.19 +# Rules to configure and make the package.
    2.20 +compile_rules()
    2.21 +{
    2.22 +	perl Makefile.PL
    2.23 +	make
    2.24 +	make DESTDIR=$DESTDIR install
    2.25 +}
    2.26 +
    2.27 +# Rules to gen a SliTaz package suitable for Tazpkg.
    2.28 +genpkg_rules()
    2.29 +{
    2.30 +	cp -a $install/usr/lib $fs/usr
    2.31 +}
     3.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     3.2 +++ b/perl-universal-require/receipt	Thu Oct 11 17:45:57 2018 +0200
     3.3 @@ -0,0 +1,29 @@
     3.4 +# SliTaz package receipt.
     3.5 +
     3.6 +PACKAGE="perl-universal-require"
     3.7 +VERSION="0.18"
     3.8 +CATEGORY="development"
     3.9 +SHORT_DESC="UNIVERSAL::require module is a Perl extension"
    3.10 +MAINTAINER="devel@slitaz.org"
    3.11 +LICENSE="GPL"
    3.12 +DEPENDS="perl"
    3.13 +BUILD_DEPENDS="perl"
    3.14 +SOURCE="UNIVERSAL-require"
    3.15 +TARBALL="$SOURCE-$VERSION.tar.gz"
    3.16 +WEB_SITE="http://cpan.org/"
    3.17 +WGET_URL="https://cpan.metacpan.org/authors/id/N/NE/NEILB/$TARBALL"
    3.18 +
    3.19 +# Rules to configure and make the package.
    3.20 +compile_rules()
    3.21 +{
    3.22 +	perl Makefile.PL &&
    3.23 +	make &&
    3.24 +	make DESTDIR=$DESTDIR install
    3.25 +}
    3.26 +
    3.27 +# Rules to gen a SliTaz package suitable for Tazpkg.
    3.28 +genpkg_rules()
    3.29 +{
    3.30 +	mkdir -p $fs/usr
    3.31 +	cp -a $install/usr/lib $fs/usr
    3.32 +}