Package Details: breeze-hacked-cursor-theme-git 2.0-5

Git Clone URL: https://aur.archlinux.org/breeze-hacked-cursor-theme-git.git (read-only, click to copy)
Package Base: breeze-hacked-cursor-theme-git
Description: Breeze Hacked cursor theme
Upstream URL: https://github.com/codejamninja/breeze-hacked-cursor-theme
Licenses: GPL
Conflicts: breeze-hacked-cursor-theme
Provides: breeze-hacked-cursor-theme
Submitter: silverbluep
Maintainer: kormpu
Last Packager: kormpu
Votes: 1
Popularity: 0.000001
First Submitted: 2020-04-16 21:20 (UTC)
Last Updated: 2022-05-18 09:27 (UTC)

Dependencies (4)

Required by (0)

Sources (1)

Latest Comments

cwrau commented on 2024-04-11 11:02 (UTC)

Huh, the PKGBUILD doesn't work for me, somehow name also has the -git suffix,

With the following patch it works;

diff --git a/PKGBUILD b/PKGBUILD
index d39db7e..7d66342 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,27 +1,27 @@
 # Maintainer: kormpu mcgpapu@gmail.com 

-name=breeze-hacked-cursor-theme
-pkgname="${name}-git"
+_pkgname=breeze-hacked-cursor-theme
+pkgname="${_pkgname}-git"
 pkgver=2.0
 pkgrel=5
 pkgdesc="Breeze Hacked cursor theme"
 arch=("any")
-url="https://github.com/codejamninja/${name}"
+url="https://github.com/codejamninja/${_pkgname}"
 license=("GPL")
 makedepends=('gnome-themes-extra' 'inkscape' 'xorg-xcursorgen' 'git')
-provides=("${name}")
-conflicts=("${name}")
+provides=("${_pkgname}")
+conflicts=("${_pkgname}")
 source=("git+${url}")
 b2sums=('SKIP')


 build() {
-    cd "${srcdir}/${name}"
+    cd "${srcdir}/${_pkgname}"
     make build
 }

 package() {
     install -dm 0755 "${pkgdir}/usr/share/icons"
-    cp -rf "${srcdir}/${name}/Breeze_Hacked" "${pkgdir}/usr/share/icons"
+    cp -rf "${srcdir}/${_pkgname}/Breeze_Hacked" "${pkgdir}/usr/share/icons"
     chmod -R u=rwX,g=rX,o=rX "${pkgdir}/usr/share/icons/Breeze_Hacked"
 }