blob: 61b719bdfef399749475d1ec11ffd499f30dbe18 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# Copyright 2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
DESCRIPTION="Fix to reload Mad Catz RAT 6+ on wakeup"
HOMEPAGE="http://git.cynerd.cz/gentoo-personal-overlay/"
S="${WORKDIR}"
LICENSE="GPL-3.0+"
SLOT="0"
KEYWORDS="~amd64 ~x86"
DEPEND="sys-auth/elogind"
RDEPEND="${DEPEND}"
src_install() {
exeinto /lib64/elogind/system-sleep
doexe "${FILESDIR}/madcatz-rat6"
}
|