diff options
Diffstat (limited to 'user/perl-io-stringy/APKBUILD')
-rw-r--r-- | user/perl-io-stringy/APKBUILD | 19 |
1 files changed, 6 insertions, 13 deletions
diff --git a/user/perl-io-stringy/APKBUILD b/user/perl-io-stringy/APKBUILD index e5a271ac7..af975f67b 100644 --- a/user/perl-io-stringy/APKBUILD +++ b/user/perl-io-stringy/APKBUILD @@ -1,39 +1,32 @@ # Maintainer: Adélie Perl Team <adelie-perl@lists.adelielinux.org> pkgname=perl-io-stringy _pkgreal=IO-stringy +_author=DSKOLL +_au=${_author%%"${_author#??}"} +_a=${_author%%"${_author#?}"} pkgver=2.111 pkgrel=0 pkgdesc="I/O on in-core objects like strings and arrays" url="https://metacpan.org/release/IO-stringy" arch="noarch" license="GPL-1.0+ OR Artistic-1.0-Perl" -cpandepends="" -cpanmakedepends="" -depends="$cpandepends" -makedepends="perl-dev $cpanmakedepends" +depends="perl" +makedepends="perl-dev" subpackages="$pkgname-doc" -source="https://cpan.metacpan.org/authors/id/D/DS/DSKOLL/$_pkgreal-$pkgver.tar.gz" +source="https://cpan.metacpan.org/authors/id/$_a/$_au/$_author/$_pkgreal-$pkgver.tar.gz" builddir="$srcdir/$_pkgreal-$pkgver" prepare() { - cd "$builddir" export CFLAGS=`perl -MConfig -E 'say $Config{ccflags}'` PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor -} - -build() { - cd "$builddir" - export CFLAGS=`perl -MConfig -E 'say $Config{ccflags}'` make } check() { - cd "$builddir" make test } package() { - cd "$builddir" make DESTDIR="$pkgdir" install find "$pkgdir" \( -name perllocal.pod -o -name .packlist \) -delete } |