v0.35, initial import

This commit is contained in:
2017-03-18 14:17:45 +01:00
commit 8f59ad9acf
2 changed files with 53 additions and 0 deletions

18
.SRCINFO Normal file
View File

@@ -0,0 +1,18 @@
pkgbase = perl-net-ftpssl
pkgdesc = NET::FTPSSL perl module.
pkgver = 0.35
pkgrel = 1
url = https://metacpan.org/release/Net-FTPSSL
arch = any
license = GPL
license = PerlArtistic
depends = perl
depends = perl-net-ssleay
depends = perl-io-socket-ssl
options = !emptydirs
options = purge
source = http://search.cpan.org/CPAN/authors/id/C/CL/CLEACH/Net-FTPSSL-0.35.tar.gz
sha256sums = cab8ca7b7d954849d0bf9e26ee84ff2995cc69154c27a9d936be0cdeb7d70228
pkgname = perl-net-ftpssl

35
PKGBUILD Normal file
View File

@@ -0,0 +1,35 @@
# Contributor: Giovanni Harting <539 at idlegandalf dot com>
pkgname=perl-net-ftpssl
pkgver=0.35
pkgrel=1
pkgdesc='NET::FTPSSL perl module.'
_dist=Net-FTPSSL
arch=('any')
url="https://metacpan.org/release/$_dist"
license=('GPL' 'PerlArtistic')
depends=(perl perl-net-ssleay perl-io-socket-ssl)
options=('!emptydirs' purge)
source=("http://search.cpan.org/CPAN/authors/id/C/CL/CLEACH/$_dist-$pkgver.tar.gz")
sha256sums=('cab8ca7b7d954849d0bf9e26ee84ff2995cc69154c27a9d936be0cdeb7d70228')
build() {
cd "$srcdir/$_dist-$pkgver"
unset PERL5LIB PERL_MM_OPT PERL_LOCAL_LIB_ROOT
export PERL_MM_USE_DEFAULT=1 PERL_AUTOINSTALL=--skipdeps
/usr/bin/perl Makefile.PL
make
}
check() {
cd "$srcdir/$_dist-$pkgver"
unset PERL5LIB PERL_MM_OPT PERL_LOCAL_LIB_ROOT
export PERL_MM_USE_DEFAULT=1
make test
}
package() {
cd "$srcdir/$_dist-$pkgver"
unset PERL5LIB PERL_MM_OPT PERL_LOCAL_LIB_ROOT
make install INSTALLDIRS=vendor DESTDIR="$pkgdir"
}