summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authornullgemm2020-07-28 18:15:55 +0200
committernullgemm2020-07-28 18:15:55 +0200
commit7f937d232ccfb581a8fbc455cafb179f6f5d1c4d (patch)
treedab1702b0d3a4800786f7e1c357eace9a5688a9c
downloadaur-7f937d232ccfb581a8fbc455cafb179f6f5d1c4d.tar.gz
initial commit
-rw-r--r--.SRCINFO15
-rw-r--r--PKGBUILD17
2 files changed, 32 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO
new file mode 100644
index 000000000000..b26dbcbdfb1c
--- /dev/null
+++ b/.SRCINFO
@@ -0,0 +1,15 @@
+pkgbase = microstorm
+ pkgdesc = minimal cursor theme without shadows
+ pkgver = 0.1.0
+ pkgrel = 2
+ url = https://github.com/nullgemm/cursoryx
+ arch = i686
+ arch = x86_64
+ arch = aarch64
+ license = custom:WTFPL
+ makedepends = unzip
+ source = https://github.com/nullgemm/cursoryx/releases/download/v0.1.0/microstorm.zip
+ sha256sums = SKIP
+
+pkgname = microstorm
+
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 000000000000..c162be2aed6a
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,17 @@
+# Maintainer: nullgemm <nullgemm@mailbox.org>
+pkgname=microstorm
+pkgver=0.1.0
+pkgrel=2
+pkgdesc="minimal cursor theme without shadows"
+arch=('i686' 'x86_64' 'aarch64')
+url="https://github.com/nullgemm/cursoryx"
+license=('custom:WTFPL')
+makedepends=('unzip')
+source=("https://github.com/nullgemm/cursoryx/releases/download/v${pkgver}/${pkgname}.zip")
+sha256sums=('SKIP')
+
+package() {
+ install -d "${pkgdir}/usr/share/icons/${pkgname}"
+ cp -rf "${srcdir}/${pkgname}/index.theme" "${pkgdir}/usr/share/icons/${pkgname}/"
+ cp -rf "${srcdir}/${pkgname}/cursors" "${pkgdir}/usr/share/icons/${pkgname}/"
+}