mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-09 23:23:00 -04:00
26 lines
546 B
Bash
26 lines
546 B
Bash
# Copyright 1999-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit xdg
|
|
|
|
MY_PV="$(ver_cut 1-2)"
|
|
|
|
DESCRIPTION="Cursor theme using a custom color palette inspired by boreal colors"
|
|
HOMEPAGE="https://github.com/alvatip/Neonly"
|
|
SRC_URI="https://github.com/alvatip/Neonly/releases/download/${MY_PV}/Neonly.tar.gz -> ${P}.tar.gz"
|
|
|
|
S="${WORKDIR}/Neonly"
|
|
|
|
LICENSE="GPL-3"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64"
|
|
|
|
RESTRICT="mirror"
|
|
|
|
src_install() {
|
|
insinto "/usr/share/icons/${PN}"
|
|
doins -r cursors index.theme
|
|
}
|