summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorFerdinand Bachmann2020-09-10 14:15:16 +0200
committerFerdinand Bachmann2020-09-10 14:15:16 +0200
commit6ac11a56120d7d7ba952a231a790fb881a5ce658 (patch)
tree47a0934dfbdcc19ab4cb941543e0a35b5884f327
parentdd9e823d735a26a282a80a52b9d47b0ff964319a (diff)
downloadaur-6ac11a56120d7d7ba952a231a790fb881a5ce658.tar.gz
fix parallel make breaking build
-rw-r--r--.SRCINFO2
-rw-r--r--PKGBUILD4
2 files changed, 3 insertions, 3 deletions
diff --git a/.SRCINFO b/.SRCINFO
index b9ac6c3cc1a9..f96fb297167e 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = gtk-theme-numix-solarized-git
pkgdesc = Solarized versions of Numix GTK2 and GTK3 theme, compatible with GTK 3.20
pkgver = 20200910.e4374bd
- pkgrel = 1
+ pkgrel = 2
url = https://github.com/Ferdi265/numix-solarized-gtk-theme
arch = any
license = GPL3
diff --git a/PKGBUILD b/PKGBUILD
index 857ef3ffed3f..295daa7fd679 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,7 +2,7 @@
pkgname=gtk-theme-numix-solarized-git
pkgver=20200910.e4374bd
-pkgrel=1
+pkgrel=2
pkgdesc="Solarized versions of Numix GTK2 and GTK3 theme, compatible with GTK 3.20"
arch=('any')
url="https://github.com/Ferdi265/numix-solarized-gtk-theme"
@@ -25,6 +25,6 @@ package() {
themes=( *.colors )
for theme in ${themes[@]/.colors/}; do
- make THEME="$theme" DESTDIR="$pkgdir" install
+ make -j1 THEME="$theme" DESTDIR="$pkgdir" install
done
}