blob: a53436f374c168472ed273ea07c7397e14ca3c06 (
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
|
# Copyright 2020-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
MY_REV="542ffa373a836b918de445226478614175501118"
DESCRIPTION="A rapid and good-looking screen locker"
HOMEPAGE="https://github.com/oakszyjrnrdy/betterlockscreen_rapid"
SRC_URI="https://github.com/oakszyjrnrdy/betterlockscreen_rapid/archive/${MY_REV}.tar.gz -> ${P}.tar.gz"
S="${WORKDIR}/${PN}-${MY_REV}"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~x86"
RDEPEND="
>=x11-misc/i3lock-color-2.13.3
x11-misc/i3lock-fancy-rapid
"
src_install() {
dobin betterlockscreen_rapid
einstalldocs
insinto /etc
doins betterlockscreen_rapid.conf
}
|