blob: 102e4c2944363dc72612d4d6141d0d2519d6189b (
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
|
# Contributor: Natanael Copa <ncopa@alpinelinux.org>
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=perl-clone
pkgver=0.37
pkgrel=0
pkgdesc="Clone perl module"
url="http://search.cpan.org/dist/Clone/"
arch="all"
license="GPLv2 or Artistic"
depends="perl"
makedepends="perl-dev"
install=""
subpackages="$pkgname-doc"
source="http://search.cpan.org/CPAN/authors/id/G/GA/GARU/Clone-$pkgver.tar.gz"
_builddir="$srcdir"/Clone-$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 && make test || return 1
}
package() {
cd "$_builddir"
make DESTDIR="$pkgdir" install || return 1
find "$pkgdir" \( -name perllocal.pod -o -name .packlist \) -delete
}
md5sums="b0c9d1bcf9e85ab2fbc0b436cfc801f5 Clone-0.37.tar.gz"
sha256sums="d9f251e6f01deaac3d29df1b8422b83dca972af999cd3f6ae456e0fc6f87cd9d Clone-0.37.tar.gz"
sha512sums="a47760938d826c28d6db2b3486238acff255c6e1c77ec797e93b4a9350a3cd5c3e730352f00675589594e4ec250ceb978990a10156669813933debce93f59266 Clone-0.37.tar.gz"
|