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

32
perl-par-dist/PKGBUILD Normal file
View File

@@ -0,0 +1,32 @@
# Maintainer: Jesus E. <heckyel@riseup.net>
pkgname=perl-par-dist
pkgver=0.51
pkgrel=1
pkgdesc="Create and manipulate PAR distributions"
arch=('any')
url="https://metacpan.org/pod/PAR::Dist"
license=('GPL-1')
depends=('perl')
options=('!emptydirs')
source=("https://cpan.metacpan.org/authors/id/R/RS/RSCHUPP/PAR-Dist-${pkgver}.tar.gz")
sha512sums=('4c06ff54dfa8f3dc4766b60c45337b3cf80b32ec6bcc49d7e5a4786e0533e495f6215b257100fa5aae50f12e01a8b3d7144254d8706019c50ff115915f0fcb41')
build() {
cd "$srcdir/PAR-Dist-${pkgver}"
PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
make
}
check() {
cd "$srcdir/PAR-Dist-${pkgver}"
make test
}
package() {
cd "$srcdir/PAR-Dist-${pkgver}"
make install DESTDIR="${pkgdir}"
install -D -m644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
}
# vim:set ts=2 sw=2 et: