mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-09 23:23:00 -04:00
- add missing at-spi2-core dependency - use doicon for creating a scalable icon Closes: https://bugs.gentoo.org/950632 Signed-off-by: Filip Kobierski <fkobi@pm.me>
56 lines
1015 B
Bash
56 lines
1015 B
Bash
# Copyright 1999-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
DESCRIPTION="GTK settings editor adapted to work on wlroots-based compositors"
|
|
HOMEPAGE="https://github.com/nwg-piotr/nwg-look"
|
|
SRC_URI="
|
|
https://github.com/nwg-piotr/nwg-look/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz
|
|
https://slackware.lngn.net/pub/source/nwg-look/${PN}-vendor-${PV}.tar.xz
|
|
"
|
|
|
|
inherit desktop go-module xdg
|
|
|
|
LICENSE="MIT"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64"
|
|
|
|
DEPEND="
|
|
app-accessibility/at-spi2-core
|
|
dev-libs/glib
|
|
media-libs/fontconfig
|
|
media-libs/freetype
|
|
media-libs/harfbuzz
|
|
x11-apps/xcur2png
|
|
x11-libs/cairo
|
|
x11-libs/gdk-pixbuf
|
|
x11-libs/gtk+:3
|
|
x11-libs/pango
|
|
"
|
|
RDEPEND="${DEPEND}"
|
|
|
|
DOCS=( README.md )
|
|
|
|
src_unpack() {
|
|
default
|
|
mv -v vendor "${S}" || die
|
|
}
|
|
|
|
src_compile() {
|
|
ego build
|
|
}
|
|
|
|
src_install() {
|
|
insinto /usr/share/nwg-look
|
|
doins stuff/main.glade
|
|
doins -r langs
|
|
|
|
doicon -s scalable stuff/nwg-look.svg
|
|
domenu stuff/nwg-look.desktop
|
|
|
|
dobin nwg-look
|
|
|
|
einstalldocs
|
|
}
|