27 lines
545 B
Bash
27 lines
545 B
Bash
# Copyright 1999-2021 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=7
|
|
|
|
inherit git-r3 toolchain-funcs
|
|
|
|
DESCRIPTION="lightweight EWMH window switcher with features and looks of dmenu"
|
|
HOMEPAGE="https://github.com/seanpringle/simpleswitcher"
|
|
EGIT_REPO_URI="https://github.com/seanpringle/simpleswitcher"
|
|
|
|
LICENSE="MIT"
|
|
SLOT="0"
|
|
|
|
BDEPEND="virtual/pkgconfig"
|
|
RDEPEND="
|
|
x11-libs/libX11
|
|
x11-libs/libXft
|
|
x11-libs/libXinerama
|
|
x11-libs/libXres
|
|
"
|
|
DEPEND="${RDEPEND}"
|
|
|
|
src_compile() {
|
|
tc-export CC
|
|
default
|
|
}
|