initial import
This commit is contained in:
35
perl-xml-sax-base/LICENSE
Normal file
35
perl-xml-sax-base/LICENSE
Normal file
@@ -0,0 +1,35 @@
|
||||
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
|
||||
Upstream-Name: XML-SAX-Base
|
||||
Upstream-Contact: Grant McLean <grantm@cpan.org>
|
||||
Source: https://metacpan.org/release/XML-SAX-Base
|
||||
|
||||
Files: *
|
||||
Copyright: 2001, Kip Hampton <khampton@totalcinema.com>
|
||||
2001, Robin Berjon <robin@knowscape.com>
|
||||
2001, Matt Sergeant <matt@sergeant.org>
|
||||
2011, Grant McLean <grantm@cpan.org>
|
||||
License: Artistic or GPL-1+
|
||||
Comment: The upstream distribution does not contain an explicit statement of
|
||||
copyright ownership. Pursuant to the Berne Convention for the Protection of
|
||||
Literary and Artistic Works, it is assumed that all content is copyright by
|
||||
its respective authors unless otherwise stated.
|
||||
|
||||
Files: debian/*
|
||||
Copyright: 2011-2017, Florian Schlichting <fsfs@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'.
|
||||
31
perl-xml-sax-base/PKGBUILD
Normal file
31
perl-xml-sax-base/PKGBUILD
Normal file
@@ -0,0 +1,31 @@
|
||||
# Maintainer: Jesus E. <heckyel@riseup.net>
|
||||
|
||||
pkgname=perl-xml-sax-base
|
||||
pkgver=1.09
|
||||
pkgrel=1
|
||||
pkgdesc='Base class SAX Drivers and Filters'
|
||||
arch=('any')
|
||||
url='https://search.cpan.org/dist/XML-SAX-Base'
|
||||
license=('GPL-1')
|
||||
depends=('perl')
|
||||
options=('!emptydirs')
|
||||
source=("https://www.cpan.org/authors/id/G/GR/GRANTM/XML-SAX-Base-$pkgver.tar.gz"
|
||||
"LICENSE")
|
||||
sha512sums=('72a34fd2b0375222cad3a42a0e2d92f793d7a2ac27d831a8a8d3322fdc75ba246ca53c33cdc0fbade81f3a96ad977ebf5d4cddc6d75d76be79b2e655f316d532'
|
||||
'b4b66f12f3fe1b9456863118fbd51815c6373649780f84a2732a726bb63702942d17ee9b53b32845eef2e3b181f9d2f2b6dd75f79f8f7338cfe9829874c5640a')
|
||||
|
||||
build() {
|
||||
cd XML-SAX-Base-$pkgver
|
||||
PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
|
||||
make
|
||||
}
|
||||
|
||||
package() {
|
||||
cd XML-SAX-Base-$pkgver
|
||||
make install DESTDIR="$pkgdir"
|
||||
|
||||
find "$pkgdir" -name '.packlist' -delete
|
||||
find "$pkgdir" -name '*.pod' -delete
|
||||
|
||||
install -Dm644 "${srcdir}"/LICENSE -t "${pkgdir}/usr/share/licenses/$pkgname"
|
||||
}
|
||||
Reference in New Issue
Block a user