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 @@
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Upstream-Name: Archive-Extract
Source: https://metacpan.org/release/Archive-Extract
Upstream-Contact: Chris Williams <chris@bingosnet.co.uk>
Files: *
Copyright: 2002, Jos Boumans <kane@cpan.org>
License: Artistic or GPL-1+
Files: debian/*
Copyright: 2013-2019, gregor herrmann <gregoa@debian.org>
License: Artistic or GPL-1+
License: Artistic
This program is free software; you can redistribute it and/or modify
it under the terms of the Artistic License, which comes with Perl.
.
On Debian systems, the complete text of the Artistic License can be
found in `/usr/share/common-licenses/Artistic'.
License: GPL-1+
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 1, or (at your option)
any later version.
.
On Debian systems, the complete text of version 1 of the GNU General
Public License can be found in `/usr/share/common-licenses/GPL-1'.

View File

@@ -0,0 +1,31 @@
# Maintainer: Jesus E. <heckyel@riseup.net>
pkgname=perl-archive-extract
pkgver=0.86
_ddir=Archive-Extract-$pkgver
pkgrel=1
pkgdesc="Generic archive extracting mechanism"
arch=('any')
url='https://metacpan.org/release/Archive-Extract'
license=('GPL-1')
options=('!emptydirs')
depends=('perl')
source=("https://search.cpan.org/CPAN/authors/id/B/BI/BINGOS/Archive-Extract-$pkgver.tar.gz"
"LICENSE")
sha512sums=('a091b8c489275b8dd3d38e52e983bef7cab7d642e0dc8f6e95f1d8d006d769857b4e5950778bddd3044d6f11b3563c7796361e88869f60a9875529b78c9d1c76'
'a8b62430ea09d6165e4601c78b3e09317ebf50aae5b5feccdcf69acf306b4037d74177180db2f3018db1217cf447ae0c1accdfd62a5f612fad9dfcdb063b455e')
build() (
cd "$srcdir/$_ddir"
export PERL_MM_USE_DEFAULT=1 PERL_AUTOINSTALL=--skipdeps
unset PERL5LIB PERL_MM_OPT
/usr/bin/perl Makefile.PL
make
)
package() (
cd "$srcdir/$_ddir"
make install INSTALLDIRS=vendor DESTDIR="$pkgdir"
find "$pkgdir" -name .packlist -o -name perllocal.pod -delete
install -Dm644 "$srcdir/LICENSE" -t "$pkgdir/usr/share/licenses/$pkgname"
)