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

View File

@@ -0,0 +1,30 @@
# Maintainer: Jesus E. <heckyel@riseup.net>
pkgname=perl-http-cookies
pkgver=6.08
pkgrel=1
pkgdesc="HTTP cookie jars"
arch=('any')
url="https://search.cpan.org/dist/HTTP-Cookies"
license=('GPL-1')
depends=('perl' 'perl-http-date' 'perl-http-message')
options=('!emptydirs')
source=(https://search.cpan.org/CPAN/authors/id/O/OA/OALDERS/HTTP-Cookies-$pkgver.tar.gz)
sha512sums=('ddcbe61df3e419c3e29ee60a360d5d622f49281db612cfdb586508f50351cdfa3042c5b56e29648a776cd636919b5a4e26d5f9176a2d09a76c23b5acdef5bba9')
build() {
cd HTTP-Cookies-$pkgver
perl Makefile.PL INSTALLDIRS=vendor
make
}
check() {
cd HTTP-Cookies-$pkgver
make test
}
package() {
cd HTTP-Cookies-$pkgver
make DESTDIR="$pkgdir" install
install -Dm644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
}