summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorFabioLolix2018-02-11 09:29:22 +0100
committerFabioLolix2018-02-11 09:29:22 +0100
commitc97600b850a0d4aed4585ab8adca7ea71aaa9cde (patch)
treeeb43ba6e0ac9d2ca2ed3e944be524e6c8c9f1e2b
downloadaur-c97600b850a0d4aed4585ab8adca7ea71aaa9cde.tar.gz
Initial commit
-rw-r--r--.SRCINFO15
-rw-r--r--PKGBUILD19
2 files changed, 34 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO
new file mode 100644
index 000000000000..5d4a9449d686
--- /dev/null
+++ b/.SRCINFO
@@ -0,0 +1,15 @@
+pkgbase = delft-icon-theme
+ pkgdesc = Continuation of Faenza icon theme with up to date app icons
+ pkgver = 0.3
+ pkgrel = 1
+ url = https://www.gnome-look.org/p/1199881/
+ arch = any
+ license = GPL3
+ provides = delft-icon-theme
+ conflicts = delft-icon-theme
+ options = !strip
+ source = https://github.com/madmaxms/iconpack-delft/releases/download/v0.3/delft-iconpack.tar.xz
+ md5sums = 2db097aa4ebdd46efa404861c522bb9d
+
+pkgname = delft-icon-theme
+
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 000000000000..07e9daee722a
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,19 @@
+# Maintainer: Fabio Loli <loli_fabio@protonmail.com> -> https://github.com/FabioLolix
+
+pkgname=delft-icon-theme
+pkgver=0.3
+pkgrel=1
+pkgdesc="Continuation of Faenza icon theme with up to date app icons"
+arch=('any')
+url="https://www.gnome-look.org/p/1199881/"
+license=('GPL3')
+provides=('delft-icon-theme')
+conflicts=('delft-icon-theme')
+options=(!strip)
+source=("https://github.com/madmaxms/iconpack-delft/releases/download/v${pkgver}/delft-iconpack.tar.xz")
+md5sums=('2db097aa4ebdd46efa404861c522bb9d')
+
+package() {
+ install -d ${pkgdir}/usr/share/icons
+ cp -r ${srcdir}/Delft* ${pkgdir}/usr/share/icons
+}