summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authoractionless2019-02-04 01:21:28 +0100
committeractionless2019-02-04 01:21:28 +0100
commit3ea167cec5a8a184ceafa9a79c010fa1942e1c28 (patch)
tree0db55c8acad9fd8d0a49738be942f8da879d2881
parent22aa376b11e7a888e89b28df012294300c8aaefb (diff)
downloadaur-3ea167cec5a8a184ceafa9a79c010fa1942e1c28.tar.gz
fix: xargs --no-run-if-empty
-rw-r--r--.SRCINFO6
-rw-r--r--PKGBUILD11
2 files changed, 10 insertions, 7 deletions
diff --git a/.SRCINFO b/.SRCINFO
index e2e5e903c48d..b1ff0320a802 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = oomox-git
- pkgdesc = Themix: GUI for generating different color variations of Arc, Materia, Oomox themes (GTK2, GTK3, Cinnamon, GNOME, MATE, Openbox, Xfwm), ArchDroid, Gnome-Colors, Numix, Papirus, Suru++ icon themes, and terminal palettes. Have a hack for HiDPI in GTK2.
- pkgver = 1.11
- pkgrel = 2
+ pkgdesc = Themix: GUI for generating different color variations of Arc, Materia, Oomox themes (GTK2, GTK3, Cinnamon, GNOME, MATE, Openbox, Xfwm), ArchDroid, Gnome-Colors, Numix, Papirus, Suru++ icons, and terminal palettes. Have a hack for HiDPI in GTK2.
+ pkgver = 1.11.r16.g1daae2d4
+ pkgrel = 1
url = https://github.com/themix-project/oomox
arch = x86_64
arch = i686
diff --git a/PKGBUILD b/PKGBUILD
index fd8875e36095..69d404f26917 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,12 +2,12 @@
# Upstream URL: https://github.com/themix-project/oomox
pkgname=oomox-git
-pkgver=1.11
-pkgrel=2
+pkgver=1.11.r16.g1daae2d4
+pkgrel=1
pkgdesc="Themix: GUI for generating different color variations
of Arc, Materia, Oomox themes
(GTK2, GTK3, Cinnamon, GNOME, MATE, Openbox, Xfwm),
-ArchDroid, Gnome-Colors, Numix, Papirus, Suru++ icon themes,
+ArchDroid, Gnome-Colors, Numix, Papirus, Suru++ icons,
and terminal palettes.
Have a hack for HiDPI in GTK2."
arch=('x86_64' 'i686')
@@ -93,7 +93,10 @@ prepare(){
# remove submodule if building package update without flushing the dir:
git submodule deinit --all || true
- git config --get-regexp submodule | cut -d' ' -f1 | xargs -n1 git config --unset || true
+ git config --get-regexp submodule \
+ | cut -d' ' -f1 \
+ | xargs --no-run-if-empty -n1 git config --unset \
+ || true
old_paths=(
"$srcdir"/oomox/plugins/import_base16/base16-data
)