mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-09 15:13:31 -04:00
26 lines
766 B
Bash
26 lines
766 B
Bash
# Copyright 1999-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
DESCRIPTION="Cursor set highly inspired on KDE Breeze with HiDPi Support"
|
|
HOMEPAGE="https://github.com/ful1e5/BreezeX_Cursor"
|
|
SRC_URI="
|
|
https://github.com/ful1e5/BreezeX_Cursor/releases/download/v${PV}/BreezeX-Black.tar.xz -> ${P}-black.tar.xz
|
|
https://github.com/ful1e5/BreezeX_Cursor/releases/download/v${PV}/BreezeX-Dark.tar.xz -> ${P}-dark.tar.xz
|
|
https://github.com/ful1e5/BreezeX_Cursor/releases/download/v${PV}/BreezeX-Light.tar.xz -> ${P}-light.tar.xz
|
|
"
|
|
|
|
S="${WORKDIR}"
|
|
|
|
LICENSE="GPL-3"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~x86"
|
|
|
|
RDEPEND="x11-libs/libXcursor"
|
|
|
|
src_install() {
|
|
insinto /usr/share/cursors/xorg-x11
|
|
doins -r BreezeX-{Black,Dark,Light}
|
|
}
|