--- tesseract-deu-3.02.orig/debian/changelog
+++ tesseract-deu-3.02/debian/changelog
@@ -0,0 +1,12 @@
+tesseract-deu (3.02-2) unstable; urgency=low
+
+ * lintian: debhelper-but-no-misc-depends, out-of-date-standards-version
+ * lintian: duplicate-changelog-files
+
+ -- Jeff Breidenbach <jab@debian.org> Sat, 04 Feb 2012 19:46:10 -0800
+
+tesseract-deu (3.02-1) unstable; urgency=low
+
+ * Initial release of 3.02
+
+ -- Jeff Breidenbach <jab@debian.org> Wed, 01 Feb 2012 18:55:16 -0800
--- tesseract-deu-3.02.orig/debian/format
+++ tesseract-deu-3.02/debian/format
@@ -0,0 +1 @@
+3.0 (quilt)
--- tesseract-deu-3.02.orig/debian/control
+++ tesseract-deu-3.02/debian/control
@@ -0,0 +1,18 @@
+Source: tesseract-deu
+Section: graphics
+Priority: optional
+Maintainer: Jeffrey Ratcliffe <Jeffrey.Ratcliffe@gmail.com>
+Uploaders: Jeff Breidenbach <jab@debian.org>
+Build-Depends: debhelper (>= 5)
+Standards-Version: 3.9.2
+
+Package: tesseract-ocr-deu
+Architecture: all
+Depends: ${misc:Depends}
+Replaces: tesseract-ocr-data (<< 2)
+Breaks: tesseract-ocr (<< ${binary:Version})
+Description: tesseract-ocr language files for German
+ A commercial quality OCR engine originally developed at HP between 1985
+ and 1995. In 1995, this engine was among the top 3 evaluated by UNLV. It
+ was open-sourced by HP and UNLV in 2005. This package contains the data
+ needed for processing images in a particular language.
--- tesseract-deu-3.02.orig/debian/compat
+++ tesseract-deu-3.02/debian/compat
@@ -0,0 +1 @@
+7
--- tesseract-deu-3.02.orig/debian/copyright
+++ tesseract-deu-3.02/debian/copyright
@@ -0,0 +1,27 @@
+This package was debianized by Jeff Breidenbach <jab@debian.org> on
+Mon, 30 Jan 2012 15:47:37 -0800.
+
+It was downloaded from http://code.google.com/p/tesseract-ocr/
+
+Copyright:
+
+ Copyright 2012 Google Inc.
+
+License:
+
+ Licensed under the Apache License, Version 2.0 (the "License"); you
+ may not use this file except in compliance with the License. You may
+ obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+
+On a Debian system the complete text of the Apache-2.0 license can be
+found in /usr/share/common-licenses/Apache-2.0
+
+The Debian packaging is copyright 2012, Google, Inc. and is licensed
+under the Apache-2.0 licence.
+
--- tesseract-deu-3.02.orig/debian/rules
+++ tesseract-deu-3.02/debian/rules
@@ -0,0 +1,37 @@
+#!/usr/bin/make -f
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+build: build-stamp
+build-stamp:
+ dh_testdir
+ chmod a-x tessdata/*
+
+install: build
+
+clean:
+ dh_testdir
+ dh_testroot
+ rm -f build-stamp
+ [ ! -f Makefile ] || $(MAKE) distclean
+ dh_clean
+
+# Build architecture-independent files here.
+binary-indep: build install
+ dh_testdir
+ dh_testroot
+ dh_installchangelogs
+ dh_installdocs
+ dh_install tessdata/* usr/share/tesseract-ocr/tessdata/
+ dh_compress
+ dh_fixperms
+ dh_gencontrol
+ dh_md5sums
+ dh_builddeb
+
+# Build architecture-dependent files here.
+binary-arch:
+# We have nothing to do by default.
+
+binary: binary-indep
+.PHONY: build clean install binary-indep