blob: b9457c75ccdb99957cd9e1316cf9a102980c6868 (
plain)
1 # Description: Control the brightness of backlight and keyboard LED devices on Linux
2 # URL: https://gitlab.com/cameronnemo/brillo
3 # Maintainer: Tim Biermann, tbier at posteo dot de
4 # Depends on: polkit
5
6 name=brillo
7 version=1.4.10
8 release=1
9 source=(https://gitlab.com/cameronnemo/brillo/-/archive/v$version/brillo-v$version.tar.bz2)
10
11 build() {
12 cd $name-v$version
13 make
14 make DESTDIR=$PKG install.bin install.polkit install.udev
15 }
|