mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-08 14:43:27 -04:00
24 lines
598 B
Bash
24 lines
598 B
Bash
# Copyright 2022-2024 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
MY_PN="${PN^}"
|
|
DESCRIPTION="Cursor theme using the Nord color palette and based on Vimix and cz-Viator"
|
|
HOMEPAGE="https://github.com/guillaumeboehm/Nordzy-cursors"
|
|
SRC_URI="https://github.com/guillaumeboehm/${MY_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
|
|
|
S="${WORKDIR}/${MY_PN}-${PV}"
|
|
|
|
LICENSE="GPL-3"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64"
|
|
|
|
RDEPEND="x11-libs/libXcursor"
|
|
|
|
src_install() {
|
|
insinto /usr/share/icons
|
|
doins -r "${S}"/xcursors/Nordzy-*
|
|
doins -r "${S}"/hyprcursors/themes/Nordzy-*
|
|
}
|