diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..de8c917 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,5 @@ +ubuntu-smoother (0.0.1) jammy; urgency=low + + * First release + + -- Mirko Brombin Mon, 05 Sep 2022 20:42:00 +0000 \ No newline at end of file diff --git a/debian/compat b/debian/compat new file mode 100644 index 0000000..f11c82a --- /dev/null +++ b/debian/compat @@ -0,0 +1 @@ +9 \ No newline at end of file diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..da13a30 --- /dev/null +++ b/debian/control @@ -0,0 +1,28 @@ +Source: ubuntu-smoother +Section: utils +Priority: optional +Maintainer: Mirko Brombin +Build-Depends: + build-essential, + debhelper, + python3, + meson, + libadwaita-1-dev, + gettext, + desktop-file-utils, + make +Homepage: https://github.com/mirkobrombin/ubuntu-smoother/ +Vcs-Browser: hhttps://github.com/mirkobrombin/ubuntu-smoother +Vcs-Git: https://github.com/mirkobrombin/ubuntu-smoother.git +Rules-Requires-Root: no + +Package: ubuntu-smoother +Architecture: any +Depends: ${python3:Depends}, + ${misc:Depends}, + python3, + python3-gi, + libadwaita-1, + gir1.2-gtk-4.0, + gir1.2-adw-1 +Description: This utility is meant to be used in Ubuntu Vanilla GNOME as a first-setup wizard. \ No newline at end of file diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..df57302 --- /dev/null +++ b/debian/copyright @@ -0,0 +1,23 @@ +Format: http://dep.debian.net/deps/dep5 +Upstream-Name: Ubuntu Smoother +Source: https://github.com/mirko-brombin/ubuntu-smoother + +Files: * +Copyright: 2022 Mirko Brombin +License: GPL-3.0 + +License: GPL-3.0 + 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 3 of the License. + . + 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 program. If not, see . + . + On Debian systems, the complete text of the GNU General + Public License version 3 can be found in "/usr/share/common-licenses/GPL-3". \ No newline at end of file diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..d1f4804 --- /dev/null +++ b/debian/rules @@ -0,0 +1,13 @@ +#!/usr/bin/make -f +# -*- makefile -*- +# Sample debian/rules that uses debhelper. +# This file was originally written by Joey Hess and Craig Small. +# As a special exception, when this file is copied by dh-make into a +# dh-make output file, you may use that output file without restriction. +# This special exception was added by Craig Small in version 0.37 of dh-make. + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +%: + dh $@ --buildsystem=meson \ No newline at end of file diff --git a/debian/source/format b/debian/source/format new file mode 100644 index 0000000..9f67427 --- /dev/null +++ b/debian/source/format @@ -0,0 +1 @@ +3.0 (native) \ No newline at end of file