initial import
This commit is contained in:
43
perl-algorithm-diff/LICENSE
Normal file
43
perl-algorithm-diff/LICENSE
Normal file
@@ -0,0 +1,43 @@
|
||||
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
|
||||
Upstream-Name: Algorithm-Diff
|
||||
Upstream-Contact: Ricardo Signes <rjbs@cpan.org>
|
||||
Source: https://metacpan.org/release/Algorithm-Diff
|
||||
|
||||
Files: *
|
||||
Copyright: 2000-2004, Ned Konz <perl@bike-nomad.com>
|
||||
Tye McQueen <tyemq@cpan.org>
|
||||
Mark-Jason Dominus <mjd-perl-diff@plover.com>
|
||||
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: bin/cdiff.pl bin/diff.pl bin/diffnew.pl
|
||||
Copyright: 1998, M-J. Dominus <mjd-perl-diff@plover.com>
|
||||
License: Artistic or GPL-1+
|
||||
|
||||
Files: debian/*
|
||||
Copyright: 2000, 2001, 2002, 2003, Michael Alan Dorman <mdorman@debian.org>
|
||||
2004, 2005, Florian Weimer <fw@deneb.enyo.de>
|
||||
2008-2020, gregor herrmann <gregoa@debian.org>
|
||||
2009, Jonathan Yu <jawnsy@cpan.org>
|
||||
2010-2015, Salvatore Bonaccorso <carnil@debian.org>
|
||||
2012-2018, Xavier Guimard <yadd@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 GNU/Linux 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 GNU/Linux systems, the complete text of version 1 of the
|
||||
General Public License can be found in `/usr/share/common-licenses/GPL-1'.
|
||||
28
perl-algorithm-diff/PKGBUILD
Normal file
28
perl-algorithm-diff/PKGBUILD
Normal file
@@ -0,0 +1,28 @@
|
||||
# Maintainer: Jesus E. <heckyel@riseup.net>
|
||||
|
||||
pkgname=perl-algorithm-diff
|
||||
pkgver=1.201
|
||||
pkgrel=1
|
||||
pkgdesc="Perl/CPAN Module Algorithm::Diff : Diff also Longest Common Subsequence"
|
||||
arch=('any')
|
||||
url='https://search.cpan.org/dist/Algorithm-Diff'
|
||||
license=('GPL-1')
|
||||
depends=('perl')
|
||||
source=("https://cpan.metacpan.org/authors/id/R/RJ/RJBS/Algorithm-Diff-$pkgver.tar.gz"
|
||||
"LICENSE")
|
||||
sha512sums=('b22b55f4e45748da0e8aca556dc2155ef2dbcfe42ac5cbe4aa59e4cc13c95a141e6324a9ab0acd7fbc3d97e761e0778176df0f7e726af837a7b7d075106ad8d0'
|
||||
'94e0bd439e390c1a969ab028919c203a263316a5f57f7d80f68099bc4fda635a10fd3f36af9db466747f842722185c522f4c7b1dd6ecf32d089b6adac6eec5e3')
|
||||
|
||||
build() {
|
||||
cd "$srcdir"/Algorithm-Diff-$pkgver
|
||||
PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
|
||||
make
|
||||
}
|
||||
|
||||
package() {
|
||||
cd "$srcdir"/Algorithm-Diff-$pkgver
|
||||
make pure_install doc_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