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,27 @@
# Maintainer: Jesus E. <heckyel@riseup.net>
pkgname=perl-file-sharedir
pkgver=1.118
pkgrel=1
pkgdesc="Locate per-dist and per-module shared files"
arch=('any')
url="https://metacpan.org/release/File-ShareDir"
license=('GPL-1')
depends=('perl-class-inspector')
options=('!emptydirs')
source=("https://cpan.metacpan.org/authors/id/R/RE/REHSACK/File-ShareDir-${pkgver}.tar.gz")
sha512sums=('890f33e96333f7b07707d722e59e7da9a287112062814ef294594ac67f2f7349f905c009e6cd70d3af3a4de85335b074ec5a61194f9b0495f3e793d6ca635853')
build() {
cd "File-ShareDir-${pkgver}"
PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
make
}
package() {
cd "File-ShareDir-${pkgver}"
make DESTDIR="${pkgdir}" install
install -D -m644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
}
# vim:set ts=2 sw=2 et: