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,25 @@
# Maintainer: Jesus E. <heckyel@riseup.net>
pkgname=perl-list-moreutils
pkgver=0.430
pkgrel=1
pkgdesc="Provide the stuff missing in List::Util"
arch=('any')
license=('GPL-1')
options=('!emptydirs')
depends=('perl-exporter-tiny' 'perl-list-moreutils-xs')
url=https://search.cpan.org/dist/List-MoreUtils
source=("https://search.cpan.org/CPAN/authors/id/R/RE/REHSACK/List-MoreUtils-${pkgver}.tar.gz")
sha512sums=('bc9ff033c12251a6f0899a96da0ec8fc314ddb8d6cdf18c37fe1fdcfc38a4c95ed6f8e006bb124e77d07241ae6754f429bc2041f7772b4acfce9378a21283469')
build() {
cd "${srcdir}/List-MoreUtils-${pkgver}"
perl Makefile.PL INSTALLDIRS=vendor
make
}
package() {
cd "${srcdir}/List-MoreUtils-${pkgver}"
make DESTDIR="$pkgdir" install
install -Dm644 GPL-1 -t "${pkgdir}/usr/share/licenses/${pkgname}/"
}