mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-05-05 20:36:40 +02:00
main/perl-switch: new aport
previously shipped with perl
This commit is contained in:
parent
f64adb2e19
commit
33735d4ca2
39
main/perl-switch/APKBUILD
Normal file
39
main/perl-switch/APKBUILD
Normal file
@ -0,0 +1,39 @@
|
||||
# Contributor: Natanael Copa <ncopa@alpinelinux.org>
|
||||
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
||||
pkgname=perl-switch
|
||||
pkgver=2.16
|
||||
pkgrel=0
|
||||
pkgdesc="A switch statement for Perl"
|
||||
url="http://search.cpan.org/~rgarcia/Switch-$pkgver/"
|
||||
arch="noarch"
|
||||
license="Perl"
|
||||
depends="perl"
|
||||
makedepends="perl-dev"
|
||||
install=""
|
||||
subpackages="$pkgname-doc"
|
||||
source="http://search.cpan.org/CPAN/authors/id/R/RG/RGARCIA/Switch-$pkgver.tar.gz"
|
||||
|
||||
_builddir="$srcdir"/Switch-$pkgver
|
||||
prepare() {
|
||||
local i
|
||||
cd "$_builddir"
|
||||
for i in $source; do
|
||||
case $i in
|
||||
*.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;;
|
||||
esac
|
||||
done
|
||||
}
|
||||
|
||||
build() {
|
||||
cd "$_builddir"
|
||||
PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor || return 1
|
||||
make || return 1
|
||||
}
|
||||
|
||||
package() {
|
||||
cd "$_builddir"
|
||||
make DESTDIR="$pkgdir" install || return 1
|
||||
find "$pkgdir" \( -name perllocal.pod -o -name .packlist \) -delete
|
||||
}
|
||||
|
||||
md5sums="bf75dc7f171b4718a2118c3d6cbe6013 Switch-2.16.tar.gz"
|
||||
Loading…
x
Reference in New Issue
Block a user