diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2011-06-01 13:45:16 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2011-06-01 13:45:16 +0000 |
commit | ea316ad4c508bd46b2074c63f207fc3947e44729 (patch) | |
tree | e838ce9b0f955493a52756223c5c40ef2e053266 /main/perl-libwww | |
parent | 3f46fbbe7c94d5074fa27aee01ec282b016599aa (diff) | |
download | aports-ea316ad4c508bd46b2074c63f207fc3947e44729.tar.bz2 aports-ea316ad4c508bd46b2074c63f207fc3947e44729.tar.xz |
main/perl-libwww: update depends and run test
we want run make test to make suer we dont forget any dep
Diffstat (limited to 'main/perl-libwww')
-rw-r--r-- | main/perl-libwww/APKBUILD | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/main/perl-libwww/APKBUILD b/main/perl-libwww/APKBUILD index 7753a92a51..8689e213f7 100644 --- a/main/perl-libwww/APKBUILD +++ b/main/perl-libwww/APKBUILD @@ -3,13 +3,14 @@ pkgname=perl-libwww _realname=libwww-perl pkgver=6.02 -pkgrel=1 +pkgrel=2 pkgdesc="Perl module - World Wide Web library" url="http://search.cpan.org/~gaas" arch="noarch" license="GPL PerlArtistic" depends="perl perl-encode-locale perl-http-date perl-http-message - perl-lwp-mediatypes perl-uri" + perl-lwp-mediatypes perl-uri perl-http-daemon perl-www-robotrules + perl-file-listing perl-http-cookies perl-net-http" makedepends="perl-dev" install= subpackages="$pkgname-doc" @@ -20,7 +21,7 @@ _builddir="$srcdir/$_realname-$pkgver" build() { cd $_builddir PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor || return 1 - make || return 1 + make && make test || return 1 } package() { |