gentoo-linux-surface-overlay/app-misc/surface-dtx-daemon/surface-dtx-daemon-9999.ebuild

33 lines
690 B
Bash
Raw Normal View History

2021-07-30 14:14:50 -07:00
# Copyright 2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
2021-07-30 20:27:02 -07:00
inherit cargo git-r3
2021-07-30 14:14:50 -07:00
DESCRIPTION="Utility to control attach/detach of clipboard on Surface Book devices."
HOMEPAGE="https://github.com/linux-surface/linux-surface"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86"
DEPEND=""
RDEPEND="${DEPEND}"
BDEPEND=""
EGIT_REPO_URI="https://github.com/linux-surface/surface-dtx-daemon"
S="${WORKDIR}/surface-dtx-daemon-9999"
src_unpack() {
git-r3_src_unpack
2021-07-30 19:59:10 -07:00
cargo_live_src_unpack
2021-07-30 14:14:50 -07:00
}
src_compile() {
2021-07-30 20:44:58 -07:00
cd surface-dtx-daemon
2021-07-30 20:41:59 -07:00
cargo_src_compile --locked surface-dtx-daemon
2021-07-30 20:44:58 -07:00
cd ../surface-dtx-userd
2021-07-30 20:41:59 -07:00
cargo_src_compile --locked surface-dtx-userd
2021-07-30 14:14:50 -07:00
}