blob: 039f9d9bdec2f158ce7e6d68e06729942e766517 (
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
28
29
30
31
32
33
34
35
36
37
38
39
|
# Copyright 2024 John M. Harris, Jr.
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit cargo git-r3
DESCRIPTION="Keep Wayland clipboard even after programs close"
HOMEPAGE="https://github.com/Linus789/wl-clip-persist"
EGIT_REPO_URI="https://github.com/Linus789/wl-clip-persist.git"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64"
DEPEND="dev-vcs/git"
RDEPEND="
${DEPEND}
gui-libs/wlroots
"
src_unpack() {
git-r3_src_unpack
cargo_live_src_unpack
}
src_configure() {
cargo_gen_config
cargo_src_configure
}
src_compile() {
cargo_src_compile
}
src_install() {
cargo_src_install
}
|