blob: 9c1faeafc08a1823605e09e7c4747787806030f0 (
plain)
1 # Description: makes the color of your display adapt to the time of day
2 # URL: https://justgetflux.com
3 # Maintainer: Thomas Penteker, tek at serverop dot de
4 # Depends on: glib xorg-libxrandr xorg-libxxf86vm
5
6 name=f.lux
7 version=1.2.0
8 release=1
9 source=(https://github.com/xflux-gui/fluxgui/archive/v$version/$name-$version.tar.gz)
10
11 build() {
12 cd fluxgui-$version
13 /usr/bin/python3 setup.py install --prefix=$PKG/usr
14
15 # fix possible umask issues
16 find $PKG/usr -type f -exec chmod a+r '{}' \;
17 find $PKG/usr/bin $PKG/usr/share/applications -type f -exec chmod a+rx '{}' \;
18 rm -r $PKG/usr/share/glib-2.0/schemas/gschemas.compiled
19 }
|