blob: d519d4aea458f0a343090f2d15c4fdb6e017e557 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DESCRIPTION="A fast, feature-complete bar for dwl"
HOMEPAGE="https://github.com/kolunmi/dwlb"
EGIT_REPO_URI="https://github.com/kolunmi/dwlb.git"
LICENSE="MIT"
SLOT="0"
KEYWORDS=""
IUSE=""
DEPEND="
dev-libs/wayland
x11-libs/pixman
media-libs/fcft
"
RDEPEND="${DEPEND}"
inherit git-r3
src_compile() {
emake
}
src_install() {
# Do NOT call "emake install" because it tries to install to /usr/local/bin
dobin dwlb
dodoc README.md
}
|