mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-09 15:13:31 -04:00
24 lines
609 B
Bash
24 lines
609 B
Bash
# Copyright 1999-2026 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit xdg meson
|
|
|
|
DESCRIPTION="An expanded Adwaita-styled companion icon theme"
|
|
HOMEPAGE="https://github.com/somepaulo/MoreWaita"
|
|
|
|
LICENSE="GPL-3+"
|
|
SLOT="0"
|
|
if [[ ${PV} == 9999 ]]; then
|
|
inherit git-r3
|
|
EGIT_REPO_URI="https://github.com/somepaulo/MoreWaita"
|
|
else
|
|
SRC_URI="https://github.com/somepaulo/MoreWaita/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
|
|
KEYWORDS="~amd64 ~x86"
|
|
fi
|
|
|
|
# this ebuild does not install binaries
|
|
RESTRICT="binchecks strip"
|
|
RDEPEND="x11-themes/adwaita-icon-theme"
|