diff options
| author | Sam Hewitt <sam@snwh.org> | 2018-06-08 20:31:26 -0400 |
|---|---|---|
| committer | Sam Hewitt <sam@snwh.org> | 2018-06-08 20:31:26 -0400 |
| commit | 4e0622b6deef5077596d9ed201c5a0a63a5b57fe (patch) | |
| tree | 2d330eb095f8391140f13699303f095fe1b515a1 | |
initial commit of new packaging
| -rwxr-xr-x | debian/changelog | 47 | ||||
| -rwxr-xr-x | debian/compat | 1 | ||||
| -rwxr-xr-x | debian/control | 13 | ||||
| -rwxr-xr-x | debian/copyright | 17 | ||||
| -rw-r--r-- | debian/faba-mono-icons.dirs | 1 | ||||
| -rw-r--r-- | debian/faba-mono-icons.install | 2 | ||||
| -rw-r--r-- | debian/faba-mono-icons.postinst | 25 | ||||
| -rw-r--r-- | debian/faba-mono-icons.prerm | 2 | ||||
| -rwxr-xr-x | debian/rules | 14 | ||||
| -rwxr-xr-x | debian/source/format | 1 |
10 files changed, 123 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog new file mode 100755 index 0000000..a1d9d13 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,47 @@ +faba-mono-icons (4.4) UNRELEASED; urgency=low + + * arbitrary point update + + -- Sam Hewitt <sam@snwh.org> Fri, 8 Jun 2018 20:00:00 -0400 + +faba-mono-icons (4.3) UNRELEASED; urgency=low + + * Much revisions + + -- Sam Hewitt <sam@snwh.org> Thu, 21 Apr 2016 16:00:00 -0400 + +faba-mono-icons (4.1) UNRELEASED; urgency=low + + * Reluctantly added dark theme. + + -- Sam Hewitt <sam@snwh.org> Wed, 06 Aug 2014 17:00:00 -0400 + +faba-mono-icons (4.0) UNRELEASED; urgency=low + + * Creation of unified theme; to hell with other theme compatibility; migration to SVG + + -- Sam Hewitt <sam@snwh.org> Sat, 19 Jul 2014 13:00:00 -0400 + +faba-mono-icons (3.0) UNRELEASED; urgency=low + + * 3.0 arbitrary version increase + + -- Sam Hewitt <sam@snwh.org> Wed, 02 Jul 2014 20:00:00 -0400 + +faba-mono-icons (2.1) UNRELEASED; urgency=low + + * 2.1 release; added Faba-Mixt + + -- Sam Hewitt <sam@snwh.org> Thu, 29 May 2014 20:00:00 -0400 + +faba-mono-icons (2.0) UNRELEASED; urgency=low + + * 2.0 point release; removed light panel icons. + + -- Sam Hewitt <sam@snwh.org> Fri, 16 May 2014 11:00:00 -0400 + +faba-mono-icons (1.0) UNRELEASED; urgency=low + + * 1.0 point release. + + -- Sam Hewitt <sam@snwh.org> Wed, 01 Jan 2014 00:00:23 -0400 diff --git a/debian/compat b/debian/compat new file mode 100755 index 0000000..f599e28 --- /dev/null +++ b/debian/compat @@ -0,0 +1 @@ +10 diff --git a/debian/control b/debian/control new file mode 100755 index 0000000..6e2d749 --- /dev/null +++ b/debian/control @@ -0,0 +1,13 @@ +Source: faba-mono-icons +Section: gnome +Priority: optional +Maintainer: Sam Hewitt <sam@snwh.org> +Build-Depends: debhelper (>= 7) +Standards-Version: 4.1.1 +Homepage: https://github.com/snwh/faba-mono-icons + +Package: faba-mono-icons +Architecture: all +Depends: faba-icon-theme, ${misc:Depends} +Description: Faba Icon Theme + Stylised tray icons for the Faba icon theme. \ No newline at end of file diff --git a/debian/copyright b/debian/copyright new file mode 100755 index 0000000..e21fd5c --- /dev/null +++ b/debian/copyright @@ -0,0 +1,17 @@ +Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ +Upstream-Name: faba-mono-icons +Upstream-Contact: Sam Hewitt <sam@snwh.org> +Source: https://github.com/snwh/faba-mono-icons + +Files: * +Copyright: 2018, Sam Hewitt <sam@snwh.org> +License: CC-BY-SA + +This work is licenced under the Creative Commons Attribution-Share Alike 4.0 +United States License. To view a copy of this licence, visit +http://creativecommons.org/licenses/by-sa/4.0/ or send a letter to Creative +Commons, 171 Second Street, Suite 300, San Francisco, California 94105, USA. + +When attributing the artwork, using "Moka Project" is enough. +Please link to http://www.snwh.org/moka where available. + diff --git a/debian/faba-mono-icons.dirs b/debian/faba-mono-icons.dirs new file mode 100644 index 0000000..7d03b94 --- /dev/null +++ b/debian/faba-mono-icons.dirs @@ -0,0 +1 @@ +usr/share/icons/ diff --git a/debian/faba-mono-icons.install b/debian/faba-mono-icons.install new file mode 100644 index 0000000..dd9fbb4 --- /dev/null +++ b/debian/faba-mono-icons.install @@ -0,0 +1,2 @@ +Faba-Mono usr/share/icons/ +Faba-Mono-Dark usr/share/icons/ diff --git a/debian/faba-mono-icons.postinst b/debian/faba-mono-icons.postinst new file mode 100644 index 0000000..b6b8b06 --- /dev/null +++ b/debian/faba-mono-icons.postinst @@ -0,0 +1,25 @@ +#!/bin/sh +set -e + +#DEBHELPER# + +write_cache() +{ +if [ -x /usr/bin/gtk-update-icon-cache ]; then + # Light Theme + if ! gtk-update-icon-cache --force --quiet /usr/share/icons/Faba-Mono; then + echo "WARNING: icon cache generation failed" + fi + # Dark theme + if ! gtk-update-icon-cache --force --quiet /usr/share/icons/Faba-Mono-Dark; then + echo "WARNING: icon cache generation failed" + fi +fi +} + +if [ "$1" = "triggered" ]; then + write_cache + exit 0 +fi + +write_cache \ No newline at end of file diff --git a/debian/faba-mono-icons.prerm b/debian/faba-mono-icons.prerm new file mode 100644 index 0000000..de55c75 --- /dev/null +++ b/debian/faba-mono-icons.prerm @@ -0,0 +1,2 @@ +rm -f /usr/share/icons/Faba-Mono/icon-theme.cache +rm -f /usr/share/icons/Faba-Mono-Dark/icon-theme.cache \ No newline at end of file diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..152dad2 --- /dev/null +++ b/debian/rules @@ -0,0 +1,14 @@ +#!/usr/bin/make -f + +#export DH_VERBOSE = 1 +%: + dh $@ + +override_dh_install: + # dh_install -p faba-mono-icons debian/tmp/usr/share/icons + +override_dh_missing: + dh_missing --fail-missing + +override_dh_auto_clean: + dh_auto_clean \ No newline at end of file diff --git a/debian/source/format b/debian/source/format new file mode 100755 index 0000000..89ae9db --- /dev/null +++ b/debian/source/format @@ -0,0 +1 @@ +3.0 (native) |
