mirror of
https://github.com/Project-OSS-Revival/alien.git
synced 2026-04-25 14:00:17 +00:00
108 lines
2.9 KiB
Diff
108 lines
2.9 KiB
Diff
--- axlang-4.4.1.orig/debian/changelog
|
|
+++ axlang-4.4.1/debian/changelog
|
|
@@ -0,0 +1,9 @@
|
|
+axlang (4.4.1-14) unstable; urgency=low
|
|
+
|
|
+ * Converted from RPM binary format to debian
|
|
+
|
|
+ -- Joey Hess <joey@kitenet.net> Wed, 7 Apr 1999 21:55:48 -0700
|
|
+
|
|
+Local variables:
|
|
+mode: debian-changelog
|
|
+End:
|
|
--- axlang-4.4.1.orig/debian/control
|
|
+++ axlang-4.4.1/debian/control
|
|
@@ -0,0 +1,11 @@
|
|
+Source: axlang
|
|
+Section: alien
|
|
+Priority: extra
|
|
+Maintainer: Joey Hess <joey@kitenet.net>
|
|
+
|
|
+Package: axlang
|
|
+Architecture: i386
|
|
+Depends: ${shlibs:Depends}
|
|
+Description: Thesaurus and spell-checker for ApplixWare Office
|
|
+ This package contains the spell-checker as well as a thesaurus for
|
|
+ ApplixWare Office for Linux.
|
|
--- axlang-4.4.1.orig/debian/copyright
|
|
+++ axlang-4.4.1/debian/copyright
|
|
@@ -0,0 +1,22 @@
|
|
+This package was debianized by the alien program by converting
|
|
+a binary RPM Package on Wed, 7 Apr 1999 21:55:48 -0700.
|
|
+
|
|
+Copyright: 1990-1998 Applix, Inc.
|
|
+
|
|
+Information from the binary Package:
|
|
+Name : axlang Distribution: SuSE Linux 6.0-BETA (i386)
|
|
+Version : 4.4.1 Vendor: SuSE GmbH, Nuernberg, Germany
|
|
+Release : 13 Build Date: Tue Dec 1 01:36:41 1998
|
|
+Install date: (not installed) Build Host: neumann.suse.de
|
|
+Group : unsorted Source RPM: axbase-4.4.1-13.src.rpm
|
|
+Size : 20793103 License: 1990-1998 Applix, Inc.
|
|
+Packager : feedback@suse.de
|
|
+Summary : Thesaurus and spell-checker for ApplixWare Office
|
|
+Description :
|
|
+This package contains the spell-checker as well as a thesaurus for
|
|
+ApplixWare Office for Linux.
|
|
+
|
|
+Authors:
|
|
+--------
|
|
+ Eric Ding <ericding@applix.com>
|
|
+
|
|
--- axlang-4.4.1.orig/debian/rules
|
|
+++ axlang-4.4.1/debian/rules
|
|
@@ -0,0 +1,53 @@
|
|
+#!/usr/bin/make -f
|
|
+# debian/rules that uses debhelper and alien
|
|
+# GNU copyright 1997 by Joey Hess.
|
|
+
|
|
+# Uncomment this to turn on verbose mode.
|
|
+#export DH_VERBOSE=1
|
|
+
|
|
+build:
|
|
+ dh_testdir
|
|
+ # Nothing to do.
|
|
+
|
|
+clean:
|
|
+ dh_testdir
|
|
+ dh_testroot
|
|
+ dh_clean
|
|
+
|
|
+# Build architecture-independent files here.
|
|
+binary-indep: build
|
|
+# We have nothing to do by default.
|
|
+
|
|
+# Build architecture-dependent files here.
|
|
+binary-arch: build
|
|
+# dh_testversion
|
|
+ dh_testdir
|
|
+ dh_testroot
|
|
+ dh_clean -k
|
|
+ dh_installdirs
|
|
+ install -d debian/tmp/usr/X11R6/lib/X11
|
|
+ cp -a opt/* debian/tmp/usr/X11R6/lib/X11
|
|
+ dh_installdocs
|
|
+ dh_installexamples
|
|
+ dh_installmenu
|
|
+# dh_installinit
|
|
+ dh_installcron
|
|
+# dh_installmanpages
|
|
+# dh_undocumented
|
|
+ dh_installchangelogs
|
|
+# dh_strip
|
|
+ dh_compress
|
|
+ dh_fixperms
|
|
+ dh_suidregister
|
|
+ dh_installdeb
|
|
+ -dh_shlibdeps
|
|
+ dh_gencontrol
|
|
+ dh_makeshlibs
|
|
+ dh_md5sums
|
|
+ dh_builddeb
|
|
+
|
|
+source diff:
|
|
+ @echo >&2 'source and diff are obsolete - use dpkg-source -b'; false
|
|
+
|
|
+binary: binary-indep binary-arch
|
|
+.PHONY: build clean binary-indep binary-arch binary
|