author | Sebastian Harl <sh@tokkee.org> | |
Fri, 7 Jul 2006 16:23:02 +0000 (16:23 +0000) | ||
committer | Sebastian 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] | patch | blob |
debian/compat | [new file with mode: 0644] | patch | blob |
debian/control | [new file with mode: 0644] | patch | blob |
debian/copyright | [new file with mode: 0644] | patch | blob |
debian/rules | [new file with mode: 0755] | patch | blob |
diff --git a/debian/changelog b/debian/changelog
--- /dev/null
+++ b/debian/changelog
@@ -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/control b/debian/control
--- /dev/null
+++ b/debian/control
@@ -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
--- /dev/null
+++ b/debian/copyright
@@ -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
--- /dev/null
+++ b/debian/rules
@@ -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
+