diff options
-rw-r--r-- | debian/changelog | 6 | ||||
-rw-r--r-- | debian/compat | 1 | ||||
-rw-r--r-- | debian/control | 19 | ||||
-rw-r--r-- | debian/copyright | 30 | ||||
-rwxr-xr-x | debian/rules | 7 |
5 files changed, 63 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..e178128 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,6 @@ +qmenumodel-qml (0.1.0) quantal; urgency=low + + * Initial package; + + -- Renato Araujo Oliveira Filho <renato@canonical.com> Wed, 12 Sep 2012 14:55:31 -0300 + diff --git a/debian/compat b/debian/compat new file mode 100644 index 0000000..45a4fb7 --- /dev/null +++ b/debian/compat @@ -0,0 +1 @@ +8 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..c28f2b5 --- /dev/null +++ b/debian/control @@ -0,0 +1,19 @@ +Source: qmenumodel-qml +Section: libs +Priority: optional +Maintainer: Renato Araujo Oliveira Filho <renato@canonical.com> +Build-Depends: debhelper (>= 7.0.50~), + libqt4-dev, + cdbs, + cmake, + libglib2.0-dev, + dbus-test-runner, + lcov, + zip +Standards-Version: 3.9.2 + +Package: qmenumodel-qml +Architecture: any +Depends: ${shlibs:Depends}, + ${misc:Depends} +Description: QML bindings for GMenuModel diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..c55dfd8 --- /dev/null +++ b/debian/copyright @@ -0,0 +1,30 @@ +This package was debianized by Renato Araujo Oliveira Filho + +Copyright: + + Copyright (C) 2012 Canonical Ltd. + +License: + + This program is free software: you can redistribute it and/or modify it + under the terms of the the GNU General Public License version 3, as + published by the Free Software Foundation. + + This program is distributed in the hope that it will be useful, but + WITHOUT ANY WARRANTY; without even the implied warranties of + MERCHANTABILITY, SATISFACTORY QUALITY or FITNESS FOR A PARTICULAR + PURPOSE. See the applicable version of the GNU Lesser General Public + License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see <http://www.gnu.org/licenses/>. + +On Debian systems, the complete text of the GNU General Public License +can be found in `/usr/share/common-licenses/GPL-3' + +The Debian packaging is: + + Copyright (C) 2011 Canonical Ltd. + +and is licensed under the GPL version 3, see above. + diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..07ae845 --- /dev/null +++ b/debian/rules @@ -0,0 +1,7 @@ +#!/usr/bin/make -f +# -*- makefile -*- + +include /usr/share/cdbs/1/rules/debhelper.mk +include /usr/share/cdbs/1/rules/utils.mk +include /usr/share/cdbs/1/class/cmake.mk + |