summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authortoluschr2019-04-23 21:01:06 +0200
committertoluschr2019-04-23 21:01:06 +0200
commitced55ba9b3f5415e269344bdb59a0770ceb7bcb8 (patch)
treeb83154599e64db3c26c52a754c67bdf8a29585e5
downloadaur-ced55ba9b3f5415e269344bdb59a0770ceb7bcb8.tar.gz
init
-rw-r--r--.SRCINFO14
-rw-r--r--PKGBUILD25
2 files changed, 39 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO
new file mode 100644
index 000000000000..f3a6e6ed3d79
--- /dev/null
+++ b/.SRCINFO
@@ -0,0 +1,14 @@
+pkgbase = yaru-colors-gtk-theme-git
+ pkgdesc = A fork of Ubuntu's Yaru theme - in different colors
+ pkgver = cbc4598
+ pkgrel = 1
+ url = https://github.com/Jannomag/Yaru-Colors
+ arch = x86_64
+ license = MIT
+ makedepends = git
+ provides = adwaita-creamy
+ source = git+https://github.com/Jannomag/Yaru-Colors.git
+ sha256sums = SKIP
+
+pkgname = yaru-colors-gtk-theme-git
+
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 000000000000..4467468c14d6
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,25 @@
+# Maintainer: toluschr at protonmail dot com
+
+pkgname="yaru-colors-gtk-theme-git"
+pkgver="cbc4598"
+pkgrel="1"
+pkgdesc="A fork of Ubuntu's Yaru theme - in different colors "
+arch=("x86_64")
+license=("MIT")
+url="https://github.com/Jannomag/Yaru-Colors"
+makedepends=("git")
+provides=("adwaita-creamy")
+
+source=("git+https://github.com/Jannomag/Yaru-Colors.git")
+sha256sums=("SKIP")
+
+package() {
+ install -dm755 "$pkgdir/usr/share/themes"
+ cd "$srcdir/Yaru-Colors/Themes"
+
+
+ for themeVariant in $(ls)
+ do
+ cp -rL "$srcdir/Yaru-Colors/Themes/$themeVariant" "$pkgdir/usr/share/themes/$themeVariant"
+ done
+} \ No newline at end of file