summaryrefslogtreecommitdiff
path: root/debian
diff options
context:
space:
mode:
authorGuido Günther <agx@sigxcpu.org>2009-01-09 14:29:51 +0100
committerGuido <agx@sigxcpu.org>2009-01-09 14:43:41 +0100
commit326660ff61e2558f2d1ee7544cc6139816f1b6b7 (patch)
tree2db6a4b1c5ccfbf87ee51a256d4bcc87108d440c /debian
initial versiondebian/0.0.1
Diffstat (limited to 'debian')
-rw-r--r--debian/changelog6
-rw-r--r--debian/compat1
-rw-r--r--debian/control15
-rw-r--r--debian/copyright28
-rw-r--r--debian/install1
-rw-r--r--debian/pycompat1
-rwxr-xr-xdebian/rules14
7 files changed, 66 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..cb39817
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,6 @@
+sapgui-package (0.0.1) unstable; urgency=low
+
+ * Initial Release, inspired by java-package, installation commandline taken
+ from Matthias Schmitt's non public sapgui package.
+
+ -- Guido Günther <agx@sigxcpu.org> Thu, 08 Jan 2009 18:54:30 +0100
diff --git a/debian/compat b/debian/compat
new file mode 100644
index 0000000..7f8f011
--- /dev/null
+++ b/debian/compat
@@ -0,0 +1 @@
+7
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..b4ef40e
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,15 @@
+Source: sapgui-package
+Section: contrib/misc
+Priority: extra
+Maintainer: Guido Günther <agx@sigxcpu.org>
+Build-Depends: cdbs, debhelper (>= 7), python, python-support
+Standards-Version: 3.8.0
+VCS-Git: http://honk.sigxcpu.org/git/sapgui-package.git
+
+Package: sapgui-package
+Architecture: all
+Depends: cdbs, fakeroot, java5-runtime, ${python:Depends}
+Description: utility to build SAPGui related Debian packages
+ This package provides the capability to create a Debian package for the
+ Platinum Java SAP GUI from the provided JAR by just running
+ 'make-sgpkg <filename>'.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..2cfe2c3
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,28 @@
+This is sapgui-package maintained by Guido Günther <agx@sigxcpu.org>.
+
+The original source can always be found at:
+http://honk.sigxcpu.org/git/sapgui.git
+
+Copyright:
+
+ Copyright (C) 2009 Guido Günther
+
+License:
+
+ This package is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+
+ This package is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this package; if not, write to the Free Software
+ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+
+On Debian systems, the complete text of the GNU General
+Public License can be found in `/usr/share/common-licenses/GPL'.
+
diff --git a/debian/install b/debian/install
new file mode 100644
index 0000000..ba473f7
--- /dev/null
+++ b/debian/install
@@ -0,0 +1 @@
+make-sgpkg /usr/bin/
diff --git a/debian/pycompat b/debian/pycompat
new file mode 100644
index 0000000..0cfbf08
--- /dev/null
+++ b/debian/pycompat
@@ -0,0 +1 @@
+2
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..23b2a90
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,14 @@
+#!/usr/bin/make -f
+
+VERSION := $(shell head -n 1 $(CURDIR)/debian/changelog | sed 's/.*(//;s/).*//')
+
+DEB_PYTHON_SYSTEM = pysupport
+include /usr/share/cdbs/1/rules/debhelper.mk
+include /usr/share/cdbs/1/class/python-distutils.mk
+
+configure/sapgui-package::
+ sed s/@VERSION@/$(VERSION)/ make-sgpkg.py > make-sgpkg
+
+clean::
+ rm -f make-sgpkg
+ rm -rf build