1234567891011121314151617181920 |
- # Description: Redshift adjusts the color temperature of your screen according to your surroundings.
- # URL: https://jonls.dk/redshift
- # Maintainer: Daniel Azevedo, daniazevedo77 at posteo dot net
- # Depends on: xorg
- name=redshift
- version=1.12
- release=2
- source=(https://github.com/jonls/redshift/releases/download/v$version/$name-$version.tar.gz)
- build() {
- cd $name-$version
- ./configure --prefix=/usr
- make
- make DESTDIR=$PKG install
- rm -rf $PKG/usr/local/
- rm -rf $PKG/usr/share/locale/
- }
|