blob: 0d42427c0cae1b33f68b6c6c2f8c86363e6e06fe (
plain)
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
34
35
36
37
38
39
40
41
|
# Automatically generated by apkbuild-cpan, template 1
# Contributor: Leonardo Arena <rnalrd@alpinelinux.org>
# Maintainer: Leonardo Arena <rnalrd@alpinelinux.org>
pkgname=perl-getopt-long
_pkgreal=Getopt-Long
pkgver=2.41
pkgrel=0
pkgdesc="Module to handle parsing command line options"
url="http://search.cpan.org/dist/Getopt-Long/"
arch="noarch"
license="GPL PerlArtistic"
cpandepends=""
cpanmakedepends=" "
depends="$cpandepends"
makedepends="perl-dev $cpanmakedepends"
subpackages="$pkgname-doc"
source="http://search.cpan.org/CPAN/authors/id/J/JV/JV/$_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 && make test
}
package() {
cd "$_builddir"
make DESTDIR="$pkgdir" install || return 1
find "$pkgdir" \( -name perllocal.pod -o -name .packlist \) -delete
}
md5sums="714d040249efe344b813b90deb43bbea Getopt-Long-2.41.tar.gz"
sha256sums="830736e3b28a0cdc222945a94ee26e6a8c7709b50312654aac552d0573bfc687 Getopt-Long-2.41.tar.gz"
sha512sums="e9ec32b46223df9093b7d2a3e94795b483e4370945fe443ac185b43c6a208015e79e67dfad3df7b642c9b8739f7df223d765e6f1c92c1ba8ea5a4be41970ac1a Getopt-Long-2.41.tar.gz"
|