blob: 63807393f247fae92fca347bffe32ab65c502a34 (
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: xorg-libxrandr xorg-libxxf86vm
5
6 name=f.lux
7 version=2014-05-03
8 release=1
9 source=(http://crux.nu/~tek/$name-$version.tar.xz)
10
11 build() {
12 cd f.lux
13 /usr/bin/python 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 }
|