Code

Initial commit.
authorSebastian Harl <sh@tokkee.org>
Fri, 7 Jul 2006 16:23:02 +0000 (16:23 +0000)
committerSebastian Harl <sh@tokkee.org>
Fri, 7 Jul 2006 16:23:02 +0000 (16:23 +0000)
Added liblingua-de-ascii-perl-0.11.

debian/changelog [new file with mode: 0644]
debian/compat [new file with mode: 0644]
debian/control [new file with mode: 0644]
debian/copyright [new file with mode: 0644]
debian/rules [new file with mode: 0755]

diff --git a/debian/changelog b/debian/changelog
new file mode 100644 (file)
index 0000000..21de04d
--- /dev/null
@@ -0,0 +1,5 @@
+liblingua-de-ascii-perl (0.11-1) unstable; urgency=low
+
+  * Initial Release (closes: #377220).
+
+ -- Sebastian Harl <sh@tokkee.org>  Fri,  7 Jul 2006 15:09:35 +0200
diff --git a/debian/compat b/debian/compat
new file mode 100644 (file)
index 0000000..b8626c4
--- /dev/null
@@ -0,0 +1 @@
+4
diff --git a/debian/control b/debian/control
new file mode 100644 (file)
index 0000000..e67a228
--- /dev/null
@@ -0,0 +1,16 @@
+Source: liblingua-de-ascii-perl
+Section: perl
+Priority: optional
+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
+Architecture: all
+Depends: ${perl:Depends}
+Description: convert german umlauts to and from ascii
+ This module enables conversion from and to the ASCII format of german texts.
+ It has two methods: to_ascii and to_latin1 which each do exactly what they
+ say.
+
diff --git a/debian/copyright b/debian/copyright
new file mode 100644 (file)
index 0000000..12b5e44
--- /dev/null
@@ -0,0 +1,23 @@
+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/.
+
+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:
+
+   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.
+
+On Debian systems, the complete text of the GNU General Public 
+License can be found in `/usr/share/common-licenses/GPL' and the
+complete text of the Artistic License can be found in the file
+`/usr/share/common-licenses/Artistic'.
+
diff --git a/debian/rules b/debian/rules
new file mode 100755 (executable)
index 0000000..bec4603
--- /dev/null
@@ -0,0 +1,66 @@
+#!/usr/bin/make -f
+# debian/rules for liblingua-de-ascii-perl
+#
+# Written by Sebastian Harl <sh@tokkee.org>
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+# If set to a true value then MakeMaker's prompt function will
+# always return the default without waiting for user input.
+export PERL_MM_USE_DEFAULT=1
+
+ifndef PERL
+PERL = /usr/bin/perl
+endif
+
+build: build-stamp
+
+build-stamp:
+       dh_testdir
+       
+       $(PERL) Makefile.PL INSTALLDIRS=vendor
+       $(MAKE)
+       
+       touch build-stamp
+
+clean:
+       dh_testdir
+       dh_testroot
+       rm -f build-stamp install-stamp
+       
+       -$(MAKE) distclean
+       
+       dh_clean
+
+install: install-stamp
+
+install-stamp:
+       dh_testdir
+       dh_testroot
+       dh_clean -k
+       
+       #$(MAKE) test
+       $(MAKE) install PREFIX=$(CURDIR)/debian/liblingua-de-ascii-perl/usr \
+                       MAN3EXT=3perl
+       
+       rm $(CURDIR)/debian/liblingua-de-ascii-perl/usr/share/man/man3/*.3pm
+       
+       touch install-stamp
+
+binary: build install
+       dh_testdir
+       dh_testroot
+       dh_installdocs README
+       dh_installchangelogs Changes
+       dh_perl
+       dh_link
+       dh_compress
+       dh_fixperms
+       dh_installdeb
+       dh_gencontrol
+       dh_md5sums
+       dh_builddeb
+
+.PHONY: build clean install binary
+