summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorWard Segers2019-11-03 13:52:39 +0100
committerWard Segers2019-11-03 13:52:39 +0100
commiteefbe11ee77dfdffcbca3601982c5ee84f4657aa (patch)
tree4fb97e0568949db43d82485f6c29de689e4742ce
downloadaur-rpd-icons.tar.gz
Initial release
-rw-r--r--.SRCINFO12
-rw-r--r--PKGBUILD18
2 files changed, 30 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO
new file mode 100644
index 000000000000..28209e3218f7
--- /dev/null
+++ b/.SRCINFO
@@ -0,0 +1,12 @@
+pkgbase = rpd-icons
+ pkgdesc = Raspberry Pi icon theme
+ pkgver = 1
+ pkgrel = 1
+ url = https://github.com/raspberrypi-ui/rpd-icons
+ arch = any
+ license = GPL2
+ source = git+https://github.com/raspberrypi-ui/rpd-icons
+ md5sums = SKIP
+
+pkgname = rpd-icons
+
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 000000000000..864e415b3690
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,18 @@
+# Contributor: Ward Segers <w@rdsegers.be>
+# Contributor: Jan De Groot <jgc@archlinux.org>
+
+pkgname=rpd-icons
+pkgver=1
+pkgrel=1
+pkgdesc="Raspberry Pi icon theme"
+arch=('any')
+url="https://github.com/raspberrypi-ui/rpd-icons"
+license=('GPL2')
+source=("git+https://github.com/raspberrypi-ui/${pkgname}")
+md5sums=('SKIP')
+
+package() {
+ install -dm 755 "${pkgdir}"/usr/share/icons/
+ cp -drf --no-preserve='ownership' . "${pkgdir}"/usr/share/icons/
+}
+