sys-apps/surface-control - 9999 (gentoo-linux-surface-overlay)

Search

Install

Install this version:

emerge -a =sys-apps/surface-control-9999

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

autounmask =sys-apps/surface-control-9999

Or alternatively:

emerge --autounmask-write -a =sys-apps/surface-control-9999

Package Information

Description:
Commandline utility to control certain aspects of your surface device.
Homepage:
https://github.com/linux-surface/linux-surface
License:
MIT

Ebuild Details

Version EAPI Keywords Slot
9999 8 ~amd64 ~x86 0
View Raw Ebuild
# Copyright 2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=8

inherit cargo git-r3

DESCRIPTION="Commandline utility to control certain aspects of your surface device."
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-control"
S="${WORKDIR}/surface-control-9999"

src_unpack() {
	git-r3_src_unpack
	cargo_live_src_unpack
}

src_compile() {
	cargo_src_compile --locked
}

Inherited Eclasses