mirror of
https://codeberg.org/gigirassy/nune-gentoo-overlay
synced 2026-08-30 15:37:39 +00:00
29 lines
455 B
Bash
29 lines
455 B
Bash
EAPI=8
|
|
|
|
inherit git-r3 toolchain-funcs
|
|
|
|
DESCRIPTION="simpler Wayland wallpaper setter"
|
|
HOMEPAGE="https://github.com/sewn/wawa"
|
|
|
|
EGIT_REPO_URI="https://github.com/sewn/wawa.git"
|
|
|
|
LICENSE="MIT"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64"
|
|
|
|
DEPEND="
|
|
dev-libs/wayland
|
|
dev-libs/wayland-protocols
|
|
"
|
|
BDEPEND="
|
|
dev-util/wayland-scanner
|
|
virtual/pkgconfig
|
|
"
|
|
|
|
src_compile() {
|
|
emake CC="$(tc-getCC)"
|
|
}
|
|
|
|
src_install() {
|
|
emake DESTDIR="${D}" PREFIX=/usr install
|
|
} |