mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-12-18 16:08:17 +00:00
Signed-off-by: Michael Mair-Keimberger <mmk@levelnine.at> Closes: https://github.com/gentoo/gentoo/pull/34521 Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
29 lines
663 B
Bash
29 lines
663 B
Bash
# Copyright 1999-2023 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit toolchain-funcs
|
|
|
|
DESCRIPTION="Utility to set the name of your window manager"
|
|
HOMEPAGE="https://tools.suckless.org/x/wmname"
|
|
SRC_URI="https://dl.suckless.org/tools/${P}.tar.gz"
|
|
|
|
LICENSE="MIT"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~sparc x86"
|
|
|
|
RDEPEND="x11-libs/libX11"
|
|
DEPEND="${RDEPEND}"
|
|
|
|
PATCHES=( "${FILESDIR}"/${P}-buildsystem.patch )
|
|
|
|
src_compile() {
|
|
emake CC="$(tc-getCC)" LD="$(tc-getCC)"
|
|
}
|
|
|
|
src_install() {
|
|
emake CC="$(tc-getCC)" LD="$(tc-getCC)" \
|
|
PREFIX="${EPREFIX}"/usr DESTDIR="${D}" install
|
|
einstalldocs
|
|
}
|