summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorc piapiac2021-07-17 22:33:53 -0700
committerc piapiac2021-07-17 22:33:53 -0700
commit3be00d3197ffa63ef90dc4d0c3ecf4ecea6762e0 (patch)
tree9654149c13774e586c83d2bf4591cd8a36214643
downloadaur-3be00d3197ffa63ef90dc4d0c3ecf4ecea6762e0.tar.gz
initial commit
-rw-r--r--.SRCINFO12
-rw-r--r--PKGBUILD17
2 files changed, 29 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO
new file mode 100644
index 000000000000..73a6ba8e6e77
--- /dev/null
+++ b/.SRCINFO
@@ -0,0 +1,12 @@
+pkgbase = xcursor-plan9
+ pkgdesc = Xorg cursor theme inspired and based on plan9 cursors
+ pkgver = 0.2
+ pkgrel = 1
+ url = π.duncano.de
+ arch = any
+ license = unknown
+ depends = libxcursor
+ source = https://π.duncano.de/files/xcursor-plan9-0.2.tar.xz
+ md5sums = 79b0c5dea253bfba2dd32124454224b2
+
+pkgname = xcursor-plan9
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 000000000000..f008dc1cfd57
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,17 @@
+# Maintainer: c. c. piapiac <_c@piapiac.org>
+
+pkgname=xcursor-plan9
+pkgver=0.2
+pkgrel=1
+pkgdesc="Xorg cursor theme inspired and based on plan9 cursors"
+arch=('any')
+url="π.duncano.de"
+license=('unknown')
+depends=('libxcursor')
+source=("https://π.duncano.de/files/${pkgname}-${pkgver}.tar.xz")
+md5sums=("79b0c5dea253bfba2dd32124454224b2")
+
+package() {
+ install -dm755 "$pkgdir"/usr/share/icons
+ cp -r "$srcdir"/plan9 "$pkgdir"/usr/share/icons/
+}