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,31 @@
# Maintainer: Jesus E. <heckyel@riseup.net>
pkgname=perl-xml-sax-base
pkgver=1.09
pkgrel=1
pkgdesc='Base class SAX Drivers and Filters'
arch=('any')
url='https://search.cpan.org/dist/XML-SAX-Base'
license=('GPL-1')
depends=('perl')
options=('!emptydirs')
source=("https://www.cpan.org/authors/id/G/GR/GRANTM/XML-SAX-Base-$pkgver.tar.gz"
"LICENSE")
sha512sums=('72a34fd2b0375222cad3a42a0e2d92f793d7a2ac27d831a8a8d3322fdc75ba246ca53c33cdc0fbade81f3a96ad977ebf5d4cddc6d75d76be79b2e655f316d532'
'b4b66f12f3fe1b9456863118fbd51815c6373649780f84a2732a726bb63702942d17ee9b53b32845eef2e3b181f9d2f2b6dd75f79f8f7338cfe9829874c5640a')
build() {
cd XML-SAX-Base-$pkgver
PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
make
}
package() {
cd XML-SAX-Base-$pkgver
make install DESTDIR="$pkgdir"
find "$pkgdir" -name '.packlist' -delete
find "$pkgdir" -name '*.pod' -delete
install -Dm644 "${srcdir}"/LICENSE -t "${pkgdir}/usr/share/licenses/$pkgname"
}