summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 456d6e2)
raw | patch | inline | side by side (parent: 456d6e2)
author | Sebastian Harl <sh@tokkee.org> | |
Fri, 7 Jul 2006 23:33:02 +0000 (23:33 +0000) | ||
committer | Sebastian Harl <sh@tokkee.org> | |
Fri, 7 Jul 2006 23:33:02 +0000 (23:33 +0000) |
Split "binary" target into "binary-indep" and "binary-arch".
debian/changelog | patch | blob | history | |
debian/control | patch | blob | history | |
debian/copyright | patch | blob | history | |
debian/rules | patch | blob | history |
diff --git a/debian/changelog b/debian/changelog
index 21de04d2349a087ac9d8b39dc956a283eaa579f9..f7825d336fe9aff400e93a3c090fda74a19b1396 100644 (file)
--- a/debian/changelog
+++ b/debian/changelog
liblingua-de-ascii-perl (0.11-1) unstable; urgency=low
- * Initial Release (closes: #377220).
+ * Initial release (Closes: #377220).
-- Sebastian Harl <sh@tokkee.org> Fri, 7 Jul 2006 15:09:35 +0200
diff --git a/debian/control b/debian/control
index 3383003a33c6feb1c9993967e94c45a20c09d373..bf3983b2008fd5d78f75ac221c26cc68e329092c 100644 (file)
--- a/debian/control
+++ b/debian/control
Source: liblingua-de-ascii-perl
Section: perl
Priority: optional
+Maintainer: Sebastian Harl <sh@tokkee.org>
Build-Depends: debhelper (>= 4.0.0)
Build-Depends-Indep: perl (>= 5.8.0-7)
-Maintainer: Sebastian Harl <sh@tokkee.org>
Standards-Version: 3.7.2
Package: liblingua-de-ascii-perl
diff --git a/debian/copyright b/debian/copyright
index 12b5e44701c5252c0b602acd31c9ea2247f0ad80..0ff48694dc6249ca29606e0db3763374a5603b45 100644 (file)
--- a/debian/copyright
+++ b/debian/copyright
This package was debianized by Sebastian Harl <sh@tokkee.org> on
Fri, 7 Jul 2006 15:09:35 +0200.
-It was downloaded from http://cpan.org/modules/by-module/Lingua/.
+It was downloaded from <http://cpan.org/modules/by-module/Lingua/>.
Copyright Holder: Janek Schleicher <bigj@kamelfreund.de>
License:
- This program is free software; you can redistribute it and/or modify
- it under the terms of either:
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of either:
- a) the GNU General Public License as published by the Free Software
- Foundation; either version 1, or (at your option) any later
- version, or
+ a) the GNU General Public License as published by the Free Software
+ Foundation; either version 1, or (at your option) any later
+ version, or
- b) the "Artistic License" which comes with Perl.
+ b) the "Artistic License" which comes with Perl.
On Debian systems, the complete text of the GNU General Public
License can be found in `/usr/share/common-licenses/GPL' and the
diff --git a/debian/rules b/debian/rules
index cd73e7014a97ffe4fe922c43357103e356cdd969..7a2922f7b881d0fefece2525d10a3fdaa873edb3 100755 (executable)
--- a/debian/rules
+++ b/debian/rules
export PERL_MM_USE_DEFAULT=1
ifndef PERL
-PERL = /usr/bin/perl
+ PERL = /usr/bin/perl
endif
build: build-stamp
touch install-stamp
-binary: build install
+binary-indep: build install
dh_testdir
dh_testroot
dh_installdocs README
dh_md5sums
dh_builddeb
-.PHONY: build clean install binary
+binary-arch:
+ # nothing to do here
+
+binary: binary-indep binary-arch
+.PHONY: build clean install binary binary-indep binary-arch