initial import

This commit is contained in:
2025-06-22 20:39:04 -05:00
commit f8a70886f0
3428 changed files with 302546 additions and 0 deletions

35
perl-libwww/PKGBUILD Normal file
View File

@@ -0,0 +1,35 @@
# Maintainer: Jesus E. <heckyel@riseup.net>
pkgname=perl-libwww
pkgver=6.46
pkgrel=1
pkgdesc="The World-Wide Web library for Perl"
arch=('any')
url="https://metacpan.org/release/libwww-perl"
license=('GPL-1')
depends=('perl' 'perl-encode-locale' 'perl-file-listing'
'perl-html-parser' 'perl-http-cookies' 'perl-http-daemon'
'perl-http-date' 'perl-http-negotiate' 'perl-lwp-mediatypes'
'perl-net-http' 'perl-try-tiny' 'perl-uri' 'perl-www-robotrules')
optdepends=('perl-lwp-protocol-https: for https:// url schemes')
checkdepends=('perl-test-fatal' 'perl-test-needs' 'perl-test-requiresinternet')
options=('!emptydirs')
source=(https://cpan.metacpan.org/authors/id/O/OA/OALDERS/libwww-perl-$pkgver.tar.gz)
sha512sums=('ff4b77b3287e17f22ebe8364a7645fec99cfc181a96fb62b63b425c01d5e84e369a12a2c9741cb3ecb612514e873cc2c1af432d7a7feb4dc1ed114eb8f8e033f')
build() {
cd libwww-perl-$pkgver
perl Makefile.PL --aliases INSTALLDIRS=vendor
make
}
check() {
cd libwww-perl-$pkgver
make test
}
package() {
cd libwww-perl-$pkgver
make DESTDIR="$pkgdir" install
install -Dm644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
}