Package Details: breeze-adapta-cursor-theme-git r34.72ffeff-3

Git Clone URL: https://aur.archlinux.org/breeze-adapta-cursor-theme-git.git (read-only, click to copy)
Package Base: breeze-adapta-cursor-theme-git
Description: Popular Breeze Cursor modified for Adapta theme.
Upstream URL: https://github.com/mustafaozhan/Breeze-Adapta-Cursor
Licenses: GPL
Conflicts: breeze-adapta-cursor-theme, xcursor-breeze-adapta
Provides: breeze-adapta-cursor-theme, xcursor-breeze-adapta
Submitter: m3thodic
Maintainer: m3thodic
Last Packager: m3thodic
Votes: 3
Popularity: 0.000000
First Submitted: 2018-08-28 02:17 (UTC)
Last Updated: 2022-04-05 05:48 (UTC)

Dependencies (2)

Required by (0)

Sources (1)

Latest Comments

dctxmei commented on 2020-04-09 15:59 (UTC)

@yochananmarqos Okay, thanks for your tips, I will try to do this.

yochananmarqos commented on 2020-04-09 14:57 (UTC)

@dctxmei: You should be reporting the issue to the maintainer instead of creating a duplicate package.

dctxmei commented on 2020-04-09 10:52 (UTC)

There is something wrong in breeze-adapta-cursor-theme-git, so I created breeze-adapta-cursor-theme.

yochananmarqos commented on 2020-04-08 15:23 (UTC)

@dctxmei: Oh, right. Well, why did you create a duplicate package then?

dctxmei commented on 2020-04-08 08:06 (UTC)

breeze-adapta-cursor-theme-git is already occupied.

yochananmarqos commented on 2020-04-07 18:31 (UTC)

This should have been called breeze-adapta-cursor-theme-git, see VCS package guidelines.

dctxmei commented on 2019-06-07 03:39 (UTC)

I made some changes to PKGBUILD to remove useless files.

# Maintainer: Tony Lambiris <tony@criticalstack.com>

pkgname=breeze-adapta-cursor-theme-git
_pkgname=Breeze-Adapta-Cursor
pkgver=r28.32f6e0d
pkgrel=1
pkgdesc="Popular Breeze Cursor modified for Adapta theme"
arch=('any')
url="https://github.com/mustafaozhan/Breeze-Adapta-Cursor"
license=('GPL3')
source=("git+https://github.com/mustafaozhan/Breeze-Adapta-Cursor")
makedepends=('git')
provides=("${pkgname%-*}")
conflicts=("${pkgname%-*}")
sha512sums=('SKIP')

pkgver() {
    cd "${srcdir}/${_pkgname}"
    printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}

package() {
    cd "${srcdir}/${_pkgname}"
    install -Dm 644 LICENSE "$pkgdir/usr/share/licenses/${pkgname%-*}/LICENSE"
    install -d "$pkgdir"/usr/share/icons/Breeze-Adapta-Cursor
    rm LICENSE README.md install.sh
    rm -r cursors/New\ Folder
    cp -r * "$pkgdir"/usr/share/icons/Breeze-Adapta-Cursor
    chmod -R 644 "$pkgdir"/usr/share/icons/Breeze-Adapta-Cursor/*
    chmod 755 "$pkgdir"/usr/share/icons/Breeze-Adapta-Cursor
    chmod 755 "$pkgdir"/usr/share/icons/Breeze-Adapta-Cursor/cursors
}