From 115d268e24eba3661fe9a76ca8d7b2202ef7724b Mon Sep 17 00:00:00 2001 From: Ivailo Monev Date: Sun, 10 Jan 2016 22:12:38 +0200 Subject: [PATCH] add (experimental) Debian package files Signed-off-by: Ivailo Monev --- package/debian/changelog | 5 +++++ package/debian/compat | 1 + package/debian/control | 23 +++++++++++++++++++++++ package/debian/copyright | 29 +++++++++++++++++++++++++++++ package/debian/postinst | 3 +++ package/debian/postrm | 3 +++ package/debian/rules | 10 ++++++++++ package/debian/source/format | 1 + 8 files changed, 75 insertions(+) create mode 100644 package/debian/changelog create mode 100644 package/debian/compat create mode 100644 package/debian/control create mode 100644 package/debian/copyright create mode 100644 package/debian/postinst create mode 100644 package/debian/postrm create mode 100755 package/debian/rules create mode 100644 package/debian/source/format diff --git a/package/debian/changelog b/package/debian/changelog new file mode 100644 index 000000000..2143d85e8 --- /dev/null +++ b/package/debian/changelog @@ -0,0 +1,5 @@ +customizer (4.8.7) unstable; urgency=medium + + * Initial package + + -- Ivailo Monev Sun, 10 Jan 2016 21:28:59 EET \ No newline at end of file diff --git a/package/debian/compat b/package/debian/compat new file mode 100644 index 000000000..f11c82a4c --- /dev/null +++ b/package/debian/compat @@ -0,0 +1 @@ +9 \ No newline at end of file diff --git a/package/debian/control b/package/debian/control new file mode 100644 index 000000000..f4ee11b93 --- /dev/null +++ b/package/debian/control @@ -0,0 +1,23 @@ +Source: katie +Section: x11 +Priority: optional +Maintainer: Ivailo Monev +Homepage: https://github.com/fluxer/katie +Vcs-Git: git://github.com/fluxer/katie +Vcs-browser: https://github.com/fluxer/katie +Standards-Version: 4.8.7 +X-Python-Version: >= 2.7 +Build-Depends: debhelper (>= 9~), g++, python-dev (>= 2.7~), libssl-dev, + zlib1g-dev, libc6-dev, libpng12-dev, libjpeg62-turbo-dev, libtiff5-dev, + libmng-dev, libcups2-dev, libasound2-dev, libpulse-dev, libfreetype6-dev, + libfontconfig1-dev, libicu-dev, libglib-2.0-dev, libdbus-1-dev, libgtk2.0-dev, + libgl1-mesa-dev, libwayland-dev, unixodbc-dev, libpq-dev, libmysqld-dev, + libsqlite3-dev, libvlc-dev, xorg-dev, cmake +Package: katie-git +Architecture: i386 amd64 +Depends: ${shlibs:Depends}, ${misc:Depends}, openssl, zlib1g, libc6, libpng12, + libjpeg62-turbo, libtiffxx5, libmng1, libcups2, libasound2, libpulse0, nas, + libfreetype6, libfontconfig1, libicu52, libglib-2.0, libdbus-1, libgtk2.0, + libgl1-mesa-glx, libwayland-client0, libwayland-server0, libsqlite3 +Recommends: unixodbc, libpq5, libmysqlclient18, libvlc5, xorg +Description: C++ toolkit derived from the Qt 4.8 framework diff --git a/package/debian/copyright b/package/debian/copyright new file mode 100644 index 000000000..4c474fd06 --- /dev/null +++ b/package/debian/copyright @@ -0,0 +1,29 @@ +Copyright (C) 2015 The Qt Company Ltd. +Copyright (C) 2016 Ivailo Monev + +See the following for more information: +/usr/share/common-licenses/LGPL-2 +/usr/share/common-licenses/GFDL-1.3 + +The Qt Company Qt LGPL Exception version 1.1 + +As an additional permission to the GNU Lesser General Public License version +2.1, the object code form of a "work that uses the Library" may incorporate +material from a header file that is part of the Library. You may distribute +such object code under terms of your choice, provided that: + (i) the header files of the Library have not been modified; and + (ii) the incorporated material is limited to numerical parameters, data + structure layouts, accessors, macros, inline functions and + templates; and + (iii) you comply with the terms of Section 6 of the GNU Lesser General + Public License version 2.1. + +Moreover, you may apply this exception to a modified version of the Library, +provided that such modification does not involve copying material from the +Library into the modified Library's header files unless such material is +limited to (i) numerical parameters; (ii) data structure layouts; +(iii) accessors; and (iv) small macros, templates and inline functions of +five lines or less in length. + +Furthermore, you are not required to apply this additional permission to a +modified version of the Library. diff --git a/package/debian/postinst b/package/debian/postinst new file mode 100644 index 000000000..ecd550226 --- /dev/null +++ b/package/debian/postinst @@ -0,0 +1,3 @@ +#!/bin/sh + +set -e diff --git a/package/debian/postrm b/package/debian/postrm new file mode 100644 index 000000000..ecd550226 --- /dev/null +++ b/package/debian/postrm @@ -0,0 +1,3 @@ +#!/bin/sh + +set -e diff --git a/package/debian/rules b/package/debian/rules new file mode 100755 index 000000000..596f8327f --- /dev/null +++ b/package/debian/rules @@ -0,0 +1,10 @@ +#!/usr/bin/make -f + +override_dh_auto_build: + dh_auto_build + +override_dh_auto_install: + dh_auto_install + +override_dh_auto_clean: + dh_auto_clean \ No newline at end of file diff --git a/package/debian/source/format b/package/debian/source/format new file mode 100644 index 000000000..9f6742789 --- /dev/null +++ b/package/debian/source/format @@ -0,0 +1 @@ +3.0 (native) \ No newline at end of file