diff options
Diffstat (limited to 'user/perl-yaml-libyaml/APKBUILD')
-rw-r--r-- | user/perl-yaml-libyaml/APKBUILD | 16 |
1 files changed, 7 insertions, 9 deletions
diff --git a/user/perl-yaml-libyaml/APKBUILD b/user/perl-yaml-libyaml/APKBUILD index ac8808a72..15c79e9a7 100644 --- a/user/perl-yaml-libyaml/APKBUILD +++ b/user/perl-yaml-libyaml/APKBUILD @@ -1,6 +1,10 @@ # Contributor: Dan Theisen <djt@hxx.in> # Maintainer: Adélie Perl Team <adelie-perl@lists.adelielinux.org> pkgname=perl-yaml-libyaml +_pkgreal=YAML-LibYAML +_author=TINITA +_au=${_author%%"${_author#??}"} +_a=${_author%%"${_author#?}"} pkgver=0.80 pkgrel=0 pkgdesc="Perl YAML Serialization using XS and libyaml" @@ -8,27 +12,21 @@ url="https://metacpan.org/pod/YAML::LibYAML" arch="all" license="Artistic-1.0-Perl AND GPL-2.0" depends="perl" -depends_dev="" -makedepends="$depends_dev perl-dev" -install="" +makedepends="perl-dev" subpackages="$pkgname-doc" -source="https://cpan.metacpan.org/authors/id/T/TI/TINITA/YAML-LibYAML-$pkgver.tar.gz" -#source="https://cpan.metacpan.org/authors/id/I/IN/INGY/YAML-LibYAML-$pkgver.tar.gz" -builddir="$srcdir/YAML-LibYAML-$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 } |