app-misc/thd - 9999 (booboo)

Search

Install

Install this version:

emerge -a =app-misc/thd-9999

If this version is masked, you can unmask it using the autounmask tool or standard emerge options:

autounmask =app-misc/thd-9999

Or alternatively:

emerge --autounmask-write -a =app-misc/thd-9999

Package Information

Description:
a lightweight hotkey daemon
Homepage:
https://github.com/wertarbyte/triggerhappy
License:
GPL-3

Ebuild Details

Version EAPI Keywords Slot
9999 8 0
View Raw Ebuild
# Copyright 1999-2024 Your Mom
# Distributed under the terms of the GNU General Public License v2

EAPI=8

inherit git-r3

DESCRIPTION="a lightweight hotkey daemon"
HOMEPAGE="https://github.com/wertarbyte/triggerhappy"
EGIT_REPO_URI="https://github.com/wertarbyte/triggerhappy"

SLOT="0"

LICENSE="GPL-3"

src_install() {
	emake DESTDIR="${D}" PREFIX="${EPREFIX}"/usr install
	newconfd "${FILESDIR}"/thd.confd thd
	newinitd "${FILESDIR}"/thd.initd thd
	insinto /etc
	newins triggerhappy.conf.examples triggerhappy.conf
}

Inherited Eclasses