summaryrefslogtreecommitdiff
path: root/user/perl-strictures/APKBUILD
blob: a4c21c402d85b20c910b14afa1051941deda0965 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# Contributor: Kiyoshi Aman <kiyoshi.aman+adelie@gmail.com>
# Maintainer: Adélie Perl Team <adelie-perl@lists.adelielinux.org>
pkgname=perl-strictures
pkgver=2.000006
pkgrel=0
pkgdesc="Perl module for using strict and fatal warnings"
url="https://metacpan.org/pod/strictures"
arch="noarch"
license="Artistic-1.0-Perl"
depends="perl-bareword-filehandles perl-indirect perl-multidimensional"
makedepends="perl-dev"
subpackages="$pkgname-doc"
source="https://cpan.metacpan.org/authors/id/H/HA/HAARG/strictures-$pkgver.tar.gz"
builddir="$srcdir/strictures-$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
}

sha512sums="670857a491fa58b85b10ee3bb5c6b7be845798926327ff3a32a9b78cb86bbbb95bfcc358983ece766dc8ef19a1eae12091ec9d9a7fef6d3f5d44ee4f8c04b7d2  strictures-2.000006.tar.gz"