diff options
Diffstat (limited to 'user/perl-gdgraph/APKBUILD')
-rw-r--r-- | user/perl-gdgraph/APKBUILD | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/user/perl-gdgraph/APKBUILD b/user/perl-gdgraph/APKBUILD index ffde91d01..394b95fbe 100644 --- a/user/perl-gdgraph/APKBUILD +++ b/user/perl-gdgraph/APKBUILD @@ -1,7 +1,10 @@ # Contributor: A. Wilcox <awilfox@adelielinux.org> # Maintainer: Adélie Perl Team <adelie-perl@lists.adelielinux.org> pkgname=perl-gdgraph -_pkgname=GDGraph +_pkgreal=GDGraph +_author=RUZ +_au=${_author%%"${_author#??}"} +_a=${_author%%"${_author#?}"} pkgver=1.54 pkgrel=0 pkgdesc="Produce charts from Perl using GD" @@ -12,22 +15,19 @@ depends="perl-gd perl-gdtextutil" checkdepends="perl-capture-tiny perl-test-exception" makedepends="perl-dev" subpackages="$pkgname-doc" -source="https://cpan.metacpan.org/authors/id/R/RU/RUZ/GDGraph-$pkgver.tar.gz" -builddir="$srcdir/GDGraph-$pkgver" +source="https://cpan.metacpan.org/authors/id/$_a/$_au/$_author/$_pkgreal-$pkgver.tar.gz" +builddir="$srcdir/$_pkgreal-$pkgver" build() { - cd "$builddir" PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor make } check() { - cd "$builddir" make test } package() { - cd "$builddir" make DESTDIR="$pkgdir" install find "$pkgdir" \( -name perllocal.pod -o -name .packlist \) -delete } |