mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-28 23:21:53 +00:00
23 lines
718 B
Bash
23 lines
718 B
Bash
|
# This PKGBUILD was autocreated. See http://xtermin.us/archperl/ for details
|
||
|
# Maintainer: Charles Mauch <cmauch@gmail.com>
|
||
|
|
||
|
pkgname=perl-www-curl
|
||
|
pkgver=4.09
|
||
|
pkgrel=1
|
||
|
pkgdesc="Perl/CPAN Module WWW::Curl"
|
||
|
arch=(any)
|
||
|
url="http://search.cpan.org/dist/WWW-Curl/"
|
||
|
license=("GPL" "Artistic")
|
||
|
depends=("curl")
|
||
|
source=("http://search.cpan.org/CPAN/authors/id/S/SZ/SZBALINT/WWW-Curl-$pkgver.tar.gz")
|
||
|
md5sums=('04c136c1212edb68717ec14f6dff1cc3')
|
||
|
|
||
|
build() {
|
||
|
cd $startdir/src/WWW-Curl-$pkgver
|
||
|
PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor || return 1
|
||
|
make || return 1
|
||
|
make install DESTDIR=$startdir/pkg || return 1
|
||
|
find $startdir/pkg -name '.packlist' -delete
|
||
|
find $startdir/pkg -name '*.pod' -delete
|
||
|
}
|