add debian package
parent
2aee020d51
commit
93bc85cd57
@ -0,0 +1,5 @@
|
|||||||
|
ubuntu-smoother (0.0.1) jammy; urgency=low
|
||||||
|
|
||||||
|
* First release
|
||||||
|
|
||||||
|
-- Mirko Brombin <send@mirko.pm> Mon, 05 Sep 2022 20:42:00 +0000
|
@ -0,0 +1 @@
|
|||||||
|
9
|
@ -0,0 +1,28 @@
|
|||||||
|
Source: ubuntu-smoother
|
||||||
|
Section: utils
|
||||||
|
Priority: optional
|
||||||
|
Maintainer: Mirko Brombin <send@mirko.pm>
|
||||||
|
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.
|
@ -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 <send@mirko.pm>
|
||||||
|
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 <http://www.gnu.org/licenses/>.
|
||||||
|
.
|
||||||
|
On Debian systems, the complete text of the GNU General
|
||||||
|
Public License version 3 can be found in "/usr/share/common-licenses/GPL-3".
|
@ -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
|
@ -0,0 +1 @@
|
|||||||
|
3.0 (native)
|
Loading…
Reference in New Issue