blob: f06fde0fa9f632c076c99df880bcdf425ce50835 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
DESCRIPTION = "display brightness utility"
AUTHOR = "Patrick Steiner <patrick.steiner@a1.net>"
DEPENDS = ""
PRIORITY = "optional"
PR = "r4"
LICENSE = "GPLv2"
SRC_URI = "file://display-brightness.sh"
do_install() {
install -d ${D}${bindir}
install -m 0755 ${WORKDIR}/display-brightness.sh ${D}${bindir}/
}
|