initial import
This commit is contained in:
33
perl-user-identity/LICENSE
Normal file
33
perl-user-identity/LICENSE
Normal file
@@ -0,0 +1,33 @@
|
||||
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
|
||||
Upstream-Name: User-Identity
|
||||
Upstream-Contact: Mark Overmeer <markov@cpan.org>
|
||||
Source: https://metacpan.org/release/User-Identity
|
||||
|
||||
Files: *
|
||||
Copyright: 2003-2020, Mark Overmeer <markov@cpan.org>
|
||||
License: Artistic or GPL-1+
|
||||
|
||||
Files: debian/*
|
||||
Copyright: 2005-2007, Gunnar Wolf <gwolf@debian.org>
|
||||
2007, Damyan Ivanov <dmn@debian.org>
|
||||
2009, Jonathan Yu <jawnsy@cpan.org>
|
||||
2014, Salvatore Bonaccorso <carnil@debian.org>
|
||||
2008-2020, gregor herrmann <gregoa@debian.org>
|
||||
2016-2017, Angel Abad <angel@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'.
|
||||
27
perl-user-identity/PKGBUILD
Normal file
27
perl-user-identity/PKGBUILD
Normal file
@@ -0,0 +1,27 @@
|
||||
# Maintainer: Jesus E. <heckyel@riseup.net>
|
||||
|
||||
pkgname=perl-user-identity
|
||||
pkgver=1.00
|
||||
pkgrel=1
|
||||
pkgdesc="Perl/CPAN Module User::Identity : Define a person"
|
||||
arch=('any')
|
||||
url='https://search.cpan.org/~markov/User-Identity/'
|
||||
license=('GPL-1')
|
||||
source=("https://www.cpan.org/authors/id/M/MA/MARKOV/User-Identity-$pkgver.tar.gz"
|
||||
"LICENSE")
|
||||
sha512sums=('b39315050aed9064f606d6fb167e42fb55bd411f1573215b544c9f2833c0d39f12700a4fec701317e31d614c55825f250b0b5ce7b3355fb63bc953d07d8fc744'
|
||||
'4cc74433e37b0d2e53197f9336849da65d988974d66ca05708720cc5677695483896307f1fefd7e11683f4ba038a18364a9617abc31c8a6e174336aeaf0306f5')
|
||||
|
||||
build() {
|
||||
cd "$srcdir"/User-Identity-$pkgver
|
||||
PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
|
||||
make
|
||||
}
|
||||
|
||||
package() {
|
||||
cd "$srcdir"/User-Identity-$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