-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[sys-power/brightnessctl] New ebuild (#29)
- Loading branch information
Showing
3 changed files
with
29 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
DIST brightnessctl-0.3.1.tar.gz 6303 BLAKE2B 849c5f5b586ec382c28e3ff150e7785bd66790249d132db186ec530365127d3b20a120dee623dbe943b3827be6186f27324a1aaa426f113220d4564bfea3e1e2 SHA512 0b99124e61fdd4b29573a0bac999a49a09843cfa1d75e87552231cbec15819d45e9a0975c6199a2d6264a43ec4d420db1510eeea9e41dc9aed535cf08b3d910d |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# Copyright 1999-2017 Gentoo Foundation | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=6 | ||
|
||
DESCRIPTION="A program to read and control device brightness" | ||
HOMEPAGE="https://github.com/Hummer12007/brightnessctl" | ||
|
||
SRC_URI="https://github.com/Hummer12007/${PN}/archive/${PV}/${P}.tar.gz" | ||
|
||
LICENSE="MIT" | ||
SLOT="0" | ||
KEYWORDS="amd64 x86" | ||
IUSE="+suid" | ||
|
||
src_install() { | ||
emake DESTDIR="${D}" INSTALL_UDEV_RULES="$(usex suid 0 1)" install | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> | ||
<pkgmetadata> | ||
|
||
<maintainer type="person"> | ||
<email>[email protected]</email> | ||
<name>Mauro Toffanin</name> | ||
<description>Maintainer. Assign bugs to him</description> | ||
</maintainer> | ||
</pkgmetadata> |