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-common-sense
pkgver=3.75
pkgrel=2
pkgdesc="Implements some sane defaults for Perl programs"
arch=('i686' 'x86_64')
url='https://search.cpan.org/dist/common-sense'
license=('GPL-1')
depends=('perl')
options=('!emptydirs')
source=("https://search.cpan.org/CPAN/authors/id/M/ML/MLEHMANN/common-sense-$pkgver.tar.gz")
sha512sums=('cb6034d9ff721a4122e0215db8ad5279ec4b189c3364593d427d70a1e84a1583a0e1447e276aa9a4fcaeb2f9d47a465a5bc4c0f842c803d3ddf91755311f4af4')
build() {
cd common-sense-$pkgver
perl Makefile.PL INSTALLDIRS=vendor
make
}
package() {
cd common-sense-$pkgver
make DESTDIR="$pkgdir" install
install -Dm644 LICENSE -t "${pkgdir}/usr/share/licenses/$pkgname"
}