diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..f1c0060 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,5 @@ +com.github.cassidyjames.settings-shim (0.0.1) xenial; urgency=medium + + * Initial release + + -- Cassidy James Blaede Thu, 19 Aug 2019 14:39:42 -0700 diff --git a/debian/compat b/debian/compat new file mode 100644 index 0000000..ec63514 --- /dev/null +++ b/debian/compat @@ -0,0 +1 @@ +9 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..708d32d --- /dev/null +++ b/debian/control @@ -0,0 +1,15 @@ +Source: com.github.cassidyjames.settings-shim +Section: x11 +Priority: extra +Maintainer: Cassidy James Blaede +Build-Depends: debhelper (>= 9), + libgtk-3-dev, + meson, + valac +Standards-Version: 3.9.3 + +Package: com.github.cassidyjames.settings-shim +Architecture: any +Depends: ${misc:Depends}, ${shlibs:Depends} +Description: Calculate display info like DPI and aspect ratio + Input a few simple details and figure out the aspect ratio, DPI, and other details of any display. diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..974c9d4 --- /dev/null +++ b/debian/copyright @@ -0,0 +1,24 @@ +Format: http://dep.debian.net/deps/dep5 +Upstream-Name: settings-shim +Source: https://github.com/cassidyjames/settings-shim + +Files: src/* data/* debian/* +Copyright: 2019 Cassidy James Blaede +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, or + (at your option) any later version. + . + 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". diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..e310ca3 --- /dev/null +++ b/debian/rules @@ -0,0 +1,29 @@ +#!/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 $@ + +override_dh_auto_clean: + rm -rf debian/build + +override_dh_auto_configure: + mkdir -p debian/build + cd debian/build && meson --prefix=/usr ../.. + +override_dh_auto_build: + cd debian/build && ninja -v + +override_dh_auto_test: + cd debian/build && ninja test + +override_dh_auto_install: + cd debian/build && DESTDIR=${CURDIR}/debian/com.github.cassidyjames.settings-shim ninja install diff --git a/debian/source/format b/debian/source/format new file mode 100644 index 0000000..89ae9db --- /dev/null +++ b/debian/source/format @@ -0,0 +1 @@ +3.0 (native)