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,29 @@
# Maintainer: Jesus E. <heckyel@riseup.net>
pkgname=perl-module-runtime
pkgver=0.016
pkgrel=1
pkgdesc="runtime module handling"
arch=('any')
url="https://search.cpan.org/dist/Module-Runtime/"
license=('GPL-1')
depends=('perl' 'perl-module-build')
options=(!emptydirs)
source=("https://search.cpan.org/CPAN/authors/id/Z/ZE/ZEFRAM/Module-Runtime-$pkgver.tar.gz"
"LICENSE")
sha512sums=('64a362ee897646173dbbdd8794f863d93379d45d7ac20d3ae890d77b4ec3f5e36aaff66c41b4a6a33b28bf492216283528755550ab09e466ceafb4f0cfbaeb9e'
'4ea2e2c2462c078bf4fd42fb68ff08a5251015fdc2fad58f7e24933ad99f22062635c70e57786dfbb8dc5930f2bcacde5a85c87576cee755bcc0ce609c68255d')
build() {
cd "$srcdir"/Module-Runtime-$pkgver
PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
make
}
package() {
cd "$srcdir"/Module-Runtime-$pkgver
make install DESTDIR="${pkgdir}"
find "$pkgdir" -name perllocal.pod -delete
find "$pkgdir" -name .packlist -delete
install -Dm644 "$srcdir/LICENSE" -t "$pkgdir/usr/share/licenses/$pkgname"
}