mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-05-05 12:26:52 +02:00
main/perl-net-http: new aport, needed by perl-libwww
Net::HTTP perl module http://search.cpan.org/dist/Net-HTTP/
This commit is contained in:
parent
dfa933eaeb
commit
3f46fbbe7c
39
main/perl-net-http/APKBUILD
Normal file
39
main/perl-net-http/APKBUILD
Normal file
@ -0,0 +1,39 @@
|
||||
# Contributor: Natanael Copa <ncopa@alpinelinux.org>
|
||||
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
||||
pkgname=perl-net-http
|
||||
pkgver=6.01
|
||||
pkgrel=0
|
||||
pkgdesc="Net::HTTP perl module"
|
||||
url="http://search.cpan.org/dist/Net-HTTP/"
|
||||
arch="noarch"
|
||||
license="GPLv2 or Artistic"
|
||||
depends="perl"
|
||||
makedepends="perl-dev"
|
||||
install=""
|
||||
subpackages="$pkgname-doc"
|
||||
source="http://search.cpan.org/CPAN/authors/id/G/GA/GAAS/Net-HTTP-$pkgver.tar.gz"
|
||||
|
||||
_builddir="$srcdir"/Net-HTTP-$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="d7ae2675fca351147adcd26f840b6993 Net-HTTP-6.01.tar.gz"
|
||||
Loading…
x
Reference in New Issue
Block a user