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

35
perl-mime-types/LICENSE Normal file
View File

@@ -0,0 +1,35 @@
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Upstream-Name: MIME-Types
Upstream-Contact: Mark Overmeer <mark@overmeer.net>
Source: https://metacpan.org/release/MIME-Types
Files: *
Copyright: 1999-2020, Mark Overmeer <mark@overmeer.net>
License: Artistic
Files: debian/*
Copyright: 2000, Brian M. Almeida <bma@debian.org>
2002-2004, Stephen Zander <gibreel@debian.org>
2004-2007, Gunnar Wolf <gwolf@debian.org>
2006-2020, gregor herrmann <gregoa@debian.org>
2007-2008, Damyan Ivanov <dmn@debian.org>
2009-2011, Ansgar Burchardt <ansgar@debian.org>
2010, Jonathan Yu <jawnsy@cpan.org>
2010-2016, Salvatore Bonaccorso <carnil@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 the GNU General Public
License can be found in `/usr/share/common-licenses/GPL-1'

27
perl-mime-types/PKGBUILD Normal file
View File

@@ -0,0 +1,27 @@
# Maintainer: Jesus E. <heckyel@riseup.net>
pkgname=perl-mime-types
pkgver=2.18
pkgrel=1
pkgdesc="Perl/CPAN Module MIME::Types : Information and processing MIME types"
arch=('any')
url='https://search.cpan.org/dist/MIME-Types/'
license=('GPL-1')
depends=('perl')
options=('!emptydirs')
source=("https://deb.debian.org/debian/pool/main/libm/libmime-types-perl/libmime-types-perl_${pkgver}.orig.tar.gz"
"LICENSE")
sha512sums=('770e63a48b40c94f1728e67f6a69029f51e125562d11008f26a5e1a6b85d30fb45bcbd1f8e080f664542b81de94695972012815e07f0ecd007a11efb32005df1'
'b05b7df55cf869ebd8eafed458f6c9a56396dd80aa9409e8b5d30c56d9fe94cffe3a926f751319174692ad8ea62d3fee4c7f9f289732d8b40b0cb41fa6bc0d5e')
build() {
cd MIME-Types-${pkgver}
perl Makefile.PL INSTALLDIRS=vendor
make
}
package() {
cd MIME-Types-${pkgver}
make DESTDIR="${pkgdir}" install
install -Dm644 "${srcdir}/LICENSE" -t "${pkgdir}/usr/share/licenses/$pkgname"
}