blob: f51a19f5892eced8da4b9b8d64882c79c5064c7a (
plain) (
tree)
|
|
# Maintainer: Mattias Andrée <`base64 -d`(bWFhbmRyZWUK)@member.fsf.org>
pkgname=blueshift
pkgver=1.9
pkgrel=1
pkgdesc="An extensible and highly configurable alternative to redshift"
arch=(i686 x86_64)
url="https://github.com/maandree/blueshift"
license=('AGPL3' 'GPL3' 'custom:GFDL1.3')
depends=(python3 argparser libxcb libxxf86vm libx11)
optdepends=('adjbacklight: for backlight adjustments without root requirements'
'linux: for backlight support')
makedepends=(cython gcc python3 libxcb libxxf86vm libx11 make coreutils sed zip texinfo auto-auto-complete)
install=blueshift.install
source=($url/archive/$pkgver.tar.gz)
sha256sums=(NOT_YET_TAGGED)
build() {
cd "$srcdir/$pkgname-$pkgver"
LDFLAGS=${LDFLAGS/--as-needed/}
LDFLAGS=${LDFLAGS/,,/,}
export LDFLAGS
make PREFIX=/usr LIBEXEC=/lib/blueshift
}
package() {
cd "$srcdir/$pkgname-$pkgver"
make PREFIX=/usr LIBEXEC=/lib/blueshift install DESTDIR="$pkgdir"
}
|