summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorEyenpi2022-01-15 15:56:16 +0000
committerEyenpi2022-01-15 15:56:16 +0000
commit04c0239fad6e55fa8b701a368e845be85d2a3d8d (patch)
tree1f749d08ca6b360279c75162e67c2f0d91820300
downloadaur-cutefish-cursor-themes-git.tar.gz
cursor themes added
-rw-r--r--.SRCINFO15
-rw-r--r--.gitignore4
-rw-r--r--PKGBUILD28
3 files changed, 47 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO
new file mode 100644
index 000000000000..1a2955bec283
--- /dev/null
+++ b/.SRCINFO
@@ -0,0 +1,15 @@
+pkgbase = cutefish-cursor-themes-git
+ pkgdesc = Cutefish cursor dark/light themes
+ pkgver = 0.7
+ pkgrel = 1
+ url = https://github.com/cutefishos/cursor-themes
+ arch = any
+ groups = cutefish-git
+ license = GPL
+ makedepends = git
+ provides = cutefish-cursor-themes
+ conflicts = cutefish-cursor-themes
+ source = git+https://github.com/cutefishos/cursor-themes.git
+ sha512sums = SKIP
+
+pkgname = cutefish-cursor-themes-git
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 000000000000..31d27563afeb
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,4 @@
+*
+!.gitignore
+!PKGBUILD
+!.SRCINFO \ No newline at end of file
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 000000000000..463f81fd410c
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,28 @@
+# Maintainer: Ali Nabipour <alinabipour01@gmail.com>
+
+pkgname=cutefish-cursor-themes-git
+_pkgname=cutefish-cursor-themes
+pkgver=0.7
+pkgrel=1
+pkgdesc="Cutefish cursor dark/light themes"
+arch=('any')
+url="https://github.com/cutefishos/cursor-themes"
+license=('GPL')
+groups=('cutefish-git')
+depends=()
+makedepends=('git')
+provides=("$_pkgname")
+conflicts=("$_pkgname")
+source=("git+$url.git")
+sha512sums=('SKIP')
+
+# pkgver() {
+# cd cursor-themes
+# git describe --long --tags | sed 's/\([^-]*-g\)/r\1/;s/-/./g'
+# }
+
+package() {
+ cd cursor-themes
+ install -d "$pkgdir/usr/share/icons"
+ cp -r cutefish-dark cutefish-light "$pkgdir/usr/share/icons"
+} \ No newline at end of file