summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorBrian Bidulock2016-01-21 05:22:16 -0700
committerBrian Bidulock2016-01-21 05:22:16 -0700
commit0ffb1f799f7089efe3f17dc9b69ce66b01cd5f51 (patch)
tree3cc7a5085e5b1583c4f0e8e8c68a732055e28d13
parentd11ee1a279d209954b661592f8a3b95d4120ed66 (diff)
downloadaur-0ffb1f799f7089efe3f17dc9b69ce66b01cd5f51.tar.gz
version 1.1-2
-rw-r--r--.SRCINFO11
-rw-r--r--PKGBUILD32
2 files changed, 26 insertions, 17 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 2508046e3483..e74e1e7dca8e 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,12 +1,13 @@
+# Generated by mksrcinfo v8
+# Thu Jan 21 12:21:59 UTC 2016
pkgbase = xcursor-archcursorblue
- pkgdesc = ArchLinux cursor theme for X
+ pkgdesc = Simple blue Arch Linux cursor theme
pkgver = 1.1
- pkgrel = 1
- url = http://xfce-look.org/content/show.php/Arch+Cursor+Theme+%28simple%29?content=135902
+ pkgrel = 2
+ url = http://gnome-look.org/content/show.php/Arch+Cursor+Theme+(simple)?content=135902
arch = any
license = GPL
- noextract = 135902-ArchCursorTheme.tar.gz
- source = http://xfce-look.org/CONTENT/content-files/135902-ArchCursorTheme.tar.gz
+ source = http://gnome-look.org/CONTENT/content-files/135902-ArchCursorTheme.tar.gz
md5sums = ac2c9e3c6ddc46b36793007e6a5eeb48
pkgname = xcursor-archcursorblue
diff --git a/PKGBUILD b/PKGBUILD
index 4528817631fd..f57e6ffb95d9 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,24 +1,32 @@
+# Maintainer: Brian Bidulock <bidulock@openss7.org>
# Contributor: Marc Poiroud <marci1 AT archlinux.fr>
# Contributor: Joel Almeida <aullidolunar at gmail dot c0m>
+# Contributor: flan_suse <windows2linux AT zoho DOT com>
pkgname=xcursor-archcursorblue
+_pkgname=xcursor-arch-simple
pkgver=1.1
-pkgrel=1
-pkgdesc="ArchLinux cursor theme for X"
+pkgrel=2
+pkgdesc="Simple blue Arch Linux cursor theme"
arch=('any')
-url="http://xfce-look.org/content/show.php/Arch+Cursor+Theme+%28simple%29?content=135902"
+#url="http://xfce-look.org/content/show.php/Arch+Cursor+Theme+%28simple%29?content=135902"
+url="http://gnome-look.org/content/show.php/Arch+Cursor+Theme+(simple)?content=135902"
license=('GPL')
-depends=()
-source=("http://xfce-look.org/CONTENT/content-files/135902-ArchCursorTheme.tar.gz")
-noextract=('135902-ArchCursorTheme.tar.gz')
+conflicts=($_pkgnbame)
+#source=("http://xfce-look.org/CONTENT/content-files/135902-ArchCursorTheme.tar.gz")
+source=('http://gnome-look.org/CONTENT/content-files/135902-ArchCursorTheme.tar.gz')
md5sums=('ac2c9e3c6ddc46b36793007e6a5eeb48')
-package() {
- cd "$srcdir"
- install -d -m 755 "$pkgdir/usr/share/icons"
- tar xfz "135902-ArchCursorTheme.tar.gz" -C "$pkgdir/usr/share/icons"
+build() {
+ # Remove unnecessary preview images
+ rm -f ArchCursorTheme/preview*.png
}
-build() {
- cd "$srcdir"
+package() {
+ # Create installation directories
+ install -d -m755 "${pkgdir}/usr/share/icons/"
+ # Install the cursor theme
+ cp -rf "ArchCursorTheme" "${pkgdir}/usr/share/icons/"
}
+
+