--- sword-text-arasvd-1.1.orig/debian/changelog +++ sword-text-arasvd-1.1/debian/changelog @@ -0,0 +1,6 @@ +sword-text-arasvd (1.1-0ubuntu1) edgy; urgency=low + + * Initial release + + -- Robert K. Day Sun, 27 Aug 2006 10:56:59 +0100 + --- sword-text-arasvd-1.1.orig/debian/compat +++ sword-text-arasvd-1.1/debian/compat @@ -0,0 +1 @@ +5 --- sword-text-arasvd-1.1.orig/debian/control +++ sword-text-arasvd-1.1/debian/control @@ -0,0 +1,19 @@ +Source: sword-text-arasvd +Section: universe/text +Priority: optional +Maintainer: Robert K. Day +Build-Depends: debhelper (>= 5.0.0), unzip +Standards-Version: 3.7.2 + +Package: sword-text-arasvd +Architecture: all +Suggests: bibletime|gnomesword|kio-sword +Provides: sword-text +Enhances: sword-frontend +Description: SWORD module of the Smith & Van Dyke 1865 Arabic Bible + This is the Smith & Van Dyke 1865 Arabic Version of the Holy Bible. + . + This package contains data that requires a viewer to be seen properly, such as + GnomeSword, BibleTime or Kio-Sword. + . + Homepage: http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=AraSVD --- sword-text-arasvd-1.1.orig/debian/copyright +++ sword-text-arasvd-1.1/debian/copyright @@ -0,0 +1,18 @@ +This package was debianized by Robert K. Day on +Sun, 27 Aug 2006 10:56:59 +0100. + +It was downloaded from +http://www.crosswire.org/sword/modules/ModInfo.jsp?modName=AraSVD + +This package is in the public domain and as such has no copyright holder + +License: + +Public Domain + +The Smith & Van Dyke 1865 Arabic Bible is sourced from the Unbound Bible +at http://unbound.biola.edu. + +The text as distributed is in a compressed format. You can use the mod2imp, +mod2osis or mod2vpl commands from the libsword package in order to extract the +text into an uncompressed form. --- sword-text-arasvd-1.1.orig/debian/rules +++ sword-text-arasvd-1.1/debian/rules @@ -0,0 +1,59 @@ +#!/usr/bin/make -f +# -*- makefile -*- + +configure: configure-stamp +configure-stamp: + dh_testdir + + touch configure-stamp + + +build: build-stamp + +build-stamp: configure-stamp + dh_testdir + + unzip -o AraSVD.zip + + touch build-stamp + +clean: + dh_testdir + dh_testroot + rm -f build-stamp configure-stamp + + rm -rf mods.d modules + + dh_clean + +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + + dh_install mods.d usr/share/sword + dh_install modules usr/share/sword + + +binary-indep: build install + +binary-arch: build install + dh_testdir + dh_testroot + dh_installchangelogs + dh_installdocs + dh_installexamples + dh_installman + dh_link + dh_strip + dh_compress + dh_fixperms + dh_installdeb + dh_shlibdeps + dh_gencontrol + dh_md5sums + dh_builddeb + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install configure