34 lines
515 B
Bash
34 lines
515 B
Bash
# Copyright 1999-2020 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=7
|
|
|
|
inherit git-r3
|
|
|
|
DESCRIPTION="A window switching tool for swar"
|
|
|
|
HOMEPAGE="https://git.waldn.net/git/knotteye/swayfocus"
|
|
|
|
EGIT_REPO_URI="https://git.waldn.net/git/knotteye/swayfocus.git"
|
|
EGIT_SUBMODULES=()
|
|
|
|
LICENSE="WTFPL"
|
|
|
|
SLOT="0"
|
|
|
|
KEYWORDS="~amd64"
|
|
|
|
IUSE=""
|
|
|
|
DEPEND="
|
|
dev-libs/boehm-gc
|
|
"
|
|
|
|
BDEPEND="
|
|
dev-libs/boehm-gc
|
|
dev-lang/crystal
|
|
"
|
|
src_install() {
|
|
dobin swayfocus || die "installed failed"
|
|
}
|