diff options
author | Francesco Colista <fcolista@alpinelinux.org> | 2017-10-24 02:33:23 +0000 |
---|---|---|
committer | Francesco Colista <fcolista@alpinelinux.org> | 2017-10-24 02:33:23 +0000 |
commit | 48f66b5a205ce8c409da3fb67f46d5287f46b9e8 (patch) | |
tree | a2f304929bca11d322e12dfd5d9329772487f7fb /community/perl-net-appliance-session/APKBUILD | |
parent | 264007ddb8a86952aabc249ccd70b38d08b8d585 (diff) | |
download | aports-48f66b5a205ce8c409da3fb67f46d5287f46b9e8.tar.bz2 aports-48f66b5a205ce8c409da3fb67f46d5287f46b9e8.tar.xz |
community/perl-net-appliance-session:upgrade to 4.300000, added new dependencies
Diffstat (limited to 'community/perl-net-appliance-session/APKBUILD')
-rw-r--r-- | community/perl-net-appliance-session/APKBUILD | 31 |
1 files changed, 17 insertions, 14 deletions
diff --git a/community/perl-net-appliance-session/APKBUILD b/community/perl-net-appliance-session/APKBUILD index 590357a311..3ecd204fc7 100644 --- a/community/perl-net-appliance-session/APKBUILD +++ b/community/perl-net-appliance-session/APKBUILD @@ -3,39 +3,42 @@ # Maintainer: Francesco Colista <fcolista@alpinelinux.org> pkgname=perl-net-appliance-session _pkgreal=Net-Appliance-Session -pkgver=4.200003 +pkgver=4.300000 pkgrel=0 pkgdesc="Run command-line sessions to network appliances" url="http://search.cpan.org/dist/Net-Appliance-Session/" arch="noarch" license="GPL PerlArtistic" -cpandepends="perl-moose perl-net-cli-interact" -cpanmakedepends=" " +cpandepends="perl-moose perl-net-cli-interact perl-file-sharedir perl-text-glob + perl-io perl-term-readpassword perl-io-prompt-tiny" +cpanmakedepends="perl-module-build perl-namespace-autoclean perl-specio perl-params-validationcompiler" depends="$cpandepends" makedepends="perl-dev $cpanmakedepends" subpackages="$pkgname-doc" source="http://search.cpan.org/CPAN/authors/id/O/OL/OLIVER/$_pkgreal-$pkgver.tar.gz" - -_builddir="$srcdir/$_pkgreal-$pkgver" +builddir="$srcdir/$_pkgreal-$pkgver" prepare() { - cd "$_builddir" + cd "$builddir" export CFLAGS=`perl -MConfig -E 'say $Config{ccflags}'` - PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor + perl Build.PL installdirs=vendor } build() { - cd "$_builddir" + cd "$builddir" export CFLAGS=`perl -MConfig -E 'say $Config{ccflags}'` - make && make test + ./Build +} + +check() { + cd "$builddir" + ./Build test } package() { - cd "$_builddir" - make DESTDIR="$pkgdir" install || return 1 + cd "$builddir" + ./Build install destdir="$pkgdir" || return 1 find "$pkgdir" \( -name perllocal.pod -o -name .packlist \) -delete } -md5sums="6a174c1cac20421c05aeb822428e705b Net-Appliance-Session-4.200003.tar.gz" -sha256sums="dcb691f5bc7b4dfd86611330beddcda7aed8d333a5a95576cf5ced7c7cb87fdb Net-Appliance-Session-4.200003.tar.gz" -sha512sums="380381d01fc837e501a144c3914d8235aaa9b718508ac2ca785005a923a89ebda47d484b1dab96b723abc3248775c11e11b8b8a608c18199c3f1be1fa548233b Net-Appliance-Session-4.200003.tar.gz" +sha512sums="15d6a546603a56e64ad5a429bd21405d90189967d7ade8482bfd887740630eabed92e2678d6e3bfb6555f24efe86ed13bc9a33582f1f5a361f45d3a0ef4e18bd Net-Appliance-Session-4.300000.tar.gz" |