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,33 @@
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Upstream-Name: Module-Runtime
Upstream-Contact: Andrew Main (Zefram) <zefram@fysh.org>
Source: https://metacpan.org/release/Module-Runtime
Files: *
Copyright: 2004-2017, Andrew Main (Zefram) <zefram@fysh.org>
License: Artistic or GPL-1+
Files: debian/*
Copyright: 2007, 2008, 2010, Ivan Kohler <ivan-debian@420.am>
2011-2017, Angel Abad <angel@debian.org>
2011, Alessandro Ghedini <ghedo@debian.org>
2011, Ansgar Burchardt <ansgar@debian.org>
2011, Salvatore Bonaccorso <carnil@debian.org>
2014-2018, 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,29 @@
# Maintainer: Jesus E. <heckyel@riseup.net>
pkgname=perl-module-runtime
pkgver=0.016
pkgrel=1
pkgdesc="runtime module handling"
arch=('any')
url="https://search.cpan.org/dist/Module-Runtime/"
license=('GPL-1')
depends=('perl' 'perl-module-build')
options=(!emptydirs)
source=("https://search.cpan.org/CPAN/authors/id/Z/ZE/ZEFRAM/Module-Runtime-$pkgver.tar.gz"
"LICENSE")
sha512sums=('64a362ee897646173dbbdd8794f863d93379d45d7ac20d3ae890d77b4ec3f5e36aaff66c41b4a6a33b28bf492216283528755550ab09e466ceafb4f0cfbaeb9e'
'4ea2e2c2462c078bf4fd42fb68ff08a5251015fdc2fad58f7e24933ad99f22062635c70e57786dfbb8dc5930f2bcacde5a85c87576cee755bcc0ce609c68255d')
build() {
cd "$srcdir"/Module-Runtime-$pkgver
PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
make
}
package() {
cd "$srcdir"/Module-Runtime-$pkgver
make install DESTDIR="${pkgdir}"
find "$pkgdir" -name perllocal.pod -delete
find "$pkgdir" -name .packlist -delete
install -Dm644 "$srcdir/LICENSE" -t "$pkgdir/usr/share/licenses/$pkgname"
}