From 411cfa4648f43ae16cfc483a7e6b5500e1e48114 Mon Sep 17 00:00:00 2001 From: Boudewijn Rempt Date: Thu, 5 Feb 2015 12:57:46 +0100 Subject: [PATCH] Add a basic debian packaging folder --- debian/changelog | 5 +++++ debian/compat | 1 + debian/control | 29 +++++++++++++++++++++++++++++ debian/copyright | 31 +++++++++++++++++++++++++++++++ debian/files | 1 + debian/rules | 19 +++++++++++++++++++ debian/source/format | 1 + 7 files changed, 87 insertions(+) create mode 100644 debian/changelog create mode 100644 debian/compat create mode 100644 debian/control create mode 100644 debian/copyright create mode 100644 debian/files create mode 100755 debian/rules create mode 100644 debian/source/format diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 00000000..f4414a6f --- /dev/null +++ b/debian/changelog @@ -0,0 +1,5 @@ +plasma-phone-components (0.1) UNRELEASED; urgency=medium + + * Initial release. + + -- Boudewijn Rempt Thu, 05 Feb 2015 11:07:11 +0100 diff --git a/debian/compat b/debian/compat new file mode 100644 index 00000000..ec635144 --- /dev/null +++ b/debian/compat @@ -0,0 +1 @@ +9 diff --git a/debian/control b/debian/control new file mode 100644 index 00000000..d0100814 --- /dev/null +++ b/debian/control @@ -0,0 +1,29 @@ +Source: plasma-phone-components +Section: kde +Priority: optional +Maintainer: Boudewijn Rempt +Build-Depends: cmake (>= 2.6.3), + debhelper (>= 8.0~), + pkg-config, + pkg-kde-tools (>= 0.9), + extra-cmake-modules, + libkf5declarative-dev, + plasma-framework-dev, + libkf5service-dev, + qtdeclarative5-dev, + qt5-default +# libqofono-dev +Standards-Version: 3.9.1 + +Package: plasma-phone-components +Architecture: any +Depends: ${misc:Depends}, ${shlibs:Depends}, + libkf5plasmaquick, + plasma-workspace, + plasma-workspace-wallpapers, + breeze-icon-theme, + ttf-oxygen-font-family, + libqofono-qt5-0 +Description: Plasma Phone Components + This package contains the Plasma Phone components + diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 00000000..c5f4a684 --- /dev/null +++ b/debian/copyright @@ -0,0 +1,31 @@ +Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ +Upstream-Name: Plasma Phone Components + +Files: * +Copyright: Copyright (C) 2013-2015 Blue Systems GmbH +License: GPL-2+ + This program 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 program 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 full text of the GNU General Public + License version 2 can be found in the file + `/usr/share/common-licenses/GPL-2'. + +Files: debian/* +Copyright: Copyright 2015 Blue Systems GmbH +License: GPL-2+ + [LICENSE TEXT] diff --git a/debian/files b/debian/files new file mode 100644 index 00000000..7d072fb3 --- /dev/null +++ b/debian/files @@ -0,0 +1 @@ +plasma-phone-components_0.1_amd64.deb kde optional diff --git a/debian/rules b/debian/rules new file mode 100755 index 00000000..722cd2a2 --- /dev/null +++ b/debian/rules @@ -0,0 +1,19 @@ +#!/usr/bin/make -f + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +export LDFLAGS += -Wl,--as-needed + +%: + dh $@ --parallel --with kde --with sodeps + +override_dh_auto_configure: + dh_auto_configure -Skde -- -DCMAKE_BUILD_TYPE=RelWithDebInfo + +override_dh_install: + mv debian/plasma-phone-components debian/tmp + dh_install + +.PHONY: override_dh_auto_test + diff --git a/debian/source/format b/debian/source/format new file mode 100644 index 00000000..89ae9db8 --- /dev/null +++ b/debian/source/format @@ -0,0 +1 @@ +3.0 (native)