guru/x11-misc/selx/selx-1.2.0.ebuild
NRK 3e512c9338
x11-misc/selx: add v1.2.0, drop v1.1.0
Signed-off-by: NRK <nrk@disroot.org>
2024-06-06 16:20:59 +00:00

34 lines
657 B
Bash

# Copyright 2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit toolchain-funcs edo shell-completion
DESCRIPTION="Minimal X11 rectangle selection tool"
HOMEPAGE="https://codeberg.org/NRK/selx"
SRC_URI="https://codeberg.org/NRK/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
S="${WORKDIR}/${PN}"
LICENSE="GPL-3+"
SLOT="0"
KEYWORDS="~amd64"
RDEPEND="
x11-libs/libX11
x11-libs/libXext
x11-libs/libXrandr
"
DEPEND="${RDEPEND}"
src_compile() {
edo $(tc-getCC) -o selx selx.c ${CFLAGS} ${LDFLAGS} -l X11 -l Xext -l Xrandr
}
src_install() {
dobin selx
doman selx.1
dozshcomp etc/zsh-completion/_selx
}