mirror of
https://github.com/gentoo-mirror/guru.git
synced 2025-04-20 23:46:14 -04:00
34 lines
670 B
Bash
34 lines
670 B
Bash
# Copyright 2020-2021 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit toolchain-funcs
|
|
|
|
DESCRIPTION="A lightweight overlay volume (or anything) bar for the X Window System"
|
|
HOMEPAGE="https://github.com/florentc/xob"
|
|
SRC_URI="https://github.com/florentc/xob/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
|
|
|
LICENSE="GPL-3"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~x86"
|
|
|
|
RDEPEND="
|
|
x11-libs/libX11
|
|
dev-libs/libconfig
|
|
x11-libs/libXrender
|
|
"
|
|
DEPEND="${RDEPEND}"
|
|
|
|
src_compile() {
|
|
tc-export CC
|
|
default
|
|
}
|
|
|
|
src_install() {
|
|
emake prefix="${EPREFIX}"/usr \
|
|
sysconfdir="${EPREFIX}"/etc \
|
|
DESTDIR="${D}" install
|
|
dodoc CHANGELOG.md README.md
|
|
}
|