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,28 @@
# Maintainer: Jesus E. <heckyel@riseup.net>
pkgname=perl-algorithm-diff
pkgver=1.201
pkgrel=1
pkgdesc="Perl/CPAN Module Algorithm::Diff : Diff also Longest Common Subsequence"
arch=('any')
url='https://search.cpan.org/dist/Algorithm-Diff'
license=('GPL-1')
depends=('perl')
source=("https://cpan.metacpan.org/authors/id/R/RJ/RJBS/Algorithm-Diff-$pkgver.tar.gz"
"LICENSE")
sha512sums=('b22b55f4e45748da0e8aca556dc2155ef2dbcfe42ac5cbe4aa59e4cc13c95a141e6324a9ab0acd7fbc3d97e761e0778176df0f7e726af837a7b7d075106ad8d0'
'94e0bd439e390c1a969ab028919c203a263316a5f57f7d80f68099bc4fda635a10fd3f36af9db466747f842722185c522f4c7b1dd6ecf32d089b6adac6eec5e3')
build() {
cd "$srcdir"/Algorithm-Diff-$pkgver
PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
make
}
package() {
cd "$srcdir"/Algorithm-Diff-$pkgver
make pure_install doc_install DESTDIR="$pkgdir"
find "$pkgdir" -name '.packlist' -delete
find "$pkgdir" -name '*.pod' -delete
install -Dm644 $srcdir/LICENSE -t $pkgdir/usr/share/licenses/$pkgname
}