summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaniel Ruiz de Alegría2019-03-05 14:11:08 +0100
committerDaniel Ruiz de Alegría2019-03-05 14:11:08 +0100
commite7f6d3acb98faa9ab600e34014d1b34140348d92 (patch)
tree9b612fb02020505cb3edeed35d6f7a63e490af58
downloadaur-e7f6d3acb98faa9ab600e34014d1b34140348d92.tar.gz
20190302
-rwxr-xr-x.SRCINFO12
-rwxr-xr-xPKGBUILD18
2 files changed, 30 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO
new file mode 100755
index 000000000000..31eb0aad7df3
--- /dev/null
+++ b/.SRCINFO
@@ -0,0 +1,12 @@
+pkgbase = flat-remix-gtk
+ pkgdesc = Flat Remix GTK theme is a pretty simple gtk window theme inspired on material design following a modern design using flat colors with high contrasts and sharp borders.
+ pkgver = 20190302
+ pkgrel = 1
+ url = https://drasite.com/flat-remix-gtk
+ arch = any
+ license = GPL 3.0
+ source = https://github.com/daniruiz/flat-remix-gtk/archive/20190302.tar.gz
+ sha256sums = SKIP
+
+pkgname = flat-remix-gtk
+
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100755
index 000000000000..e34760b92874
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,18 @@
+# Maintainer: Daniel Ruiz de Alegria <daniel@drasite.com>
+
+pkgname="flat-remix-gtk"
+pkgver=20190302
+pkgrel=1
+pkgdesc="Flat Remix GTK theme is a pretty simple gtk window theme inspired on material design following a modern design using flat colors with high contrasts and sharp borders."
+arch=('any')
+url="https://drasite.com/flat-remix-gtk"
+license=('GPL 3.0')
+source=("https://github.com/daniruiz/${pkgname}/archive/${pkgver}.tar.gz")
+sha256sums=('SKIP')
+
+package() {
+ cd "${srcdir}/${pkgname}-${pkgver}/"
+ install -dm755 "${pkgdir}/usr/share/themes"
+ cp -a "Flat-Remix-GTK"* "${pkgdir}/usr/share/themes/"
+ install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}