Code

Some minor style enhancements.
authorSebastian Harl <sh@tokkee.org>
Fri, 7 Jul 2006 23:33:02 +0000 (23:33 +0000)
committerSebastian 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
debian/control
debian/copyright
debian/rules

index 21de04d2349a087ac9d8b39dc956a283eaa579f9..f7825d336fe9aff400e93a3c090fda74a19b1396 100644 (file)
@@ -1,5 +1,5 @@
 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
index 3383003a33c6feb1c9993967e94c45a20c09d373..bf3983b2008fd5d78f75ac221c26cc68e329092c 100644 (file)
@@ -1,9 +1,9 @@
 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
index 12b5e44701c5252c0b602acd31c9ea2247f0ad80..0ff48694dc6249ca29606e0db3763374a5603b45 100644 (file)
@@ -1,20 +1,20 @@
 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
index cd73e7014a97ffe4fe922c43357103e356cdd969..7a2922f7b881d0fefece2525d10a3fdaa873edb3 100755 (executable)
@@ -11,7 +11,7 @@
 export PERL_MM_USE_DEFAULT=1
 
 ifndef PERL
-PERL = /usr/bin/perl
+       PERL = /usr/bin/perl
 endif
 
 build: build-stamp
@@ -48,7 +48,7 @@ install-stamp:
        
        touch install-stamp
 
-binary: build install
+binary-indep: build install
        dh_testdir
        dh_testroot
        dh_installdocs README
@@ -62,5 +62,9 @@ binary: build install
        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