summaryrefslogtreecommitdiff
path: root/user/redshift/APKBUILD
blob: 8e3441950eb852b33feac9eef8b1434a931a4557 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
# Contributor: Luis Ressel <aranea@aixah.de>
# Maintainer: Luis Ressel <aranea@aixah.de>
pkgname=redshift
pkgver=1.12
pkgrel=0
pkgdesc="Adjust the color temperature of your screen according to your surroundings"
url="http://jonls.dk/redshift/"
arch="all"
license="GPL-3.0+"
options="!check" # No test suite
depends=""
makedepends="intltool libdrm-dev libx11-dev libxcb-dev libxxf86vm-dev"
subpackages="$pkgname-doc $pkgname-gui $pkgname-lang"
source="https://github.com/jonls/redshift/releases/download/v$pkgver/redshift-$pkgver.tar.xz"

build() {
	cd "$builddir"
	./configure \
		--build=$CBUILD \
		--host=$CHOST \
		--prefix=/usr \
		--sysconfdir=/etc \
		--mandir=/usr/share/man \
		--localstatedir=/var \
		--disable-rpath \
		--disable-corelocation \
		--enable-drm \
		--disable-geoclue2 \
		--enable-nls \
		--disable-quartz \
		--enable-randr \
		--enable-vidmode \
		--disable-wingdi
	make
}

package() {
	cd "$builddir"
	make DESTDIR="$pkgdir" install
}

doc() {
	cd "$builddir"
	install -Dm644 -t "$subpkgdir/usr/share/doc/$pkgname" redshift.conf.sample
	default_doc
}

gui() {
	depends="py3-pygobject"

	install -d "$subpkgdir/usr/bin" "$subpkgdir/usr/lib" "$subpkgdir/usr/share"
	mv "$pkgdir/usr/bin/redshift-gtk" "$subpkgdir/usr/bin/"
	mv "$pkgdir/usr/lib/python"* "$subpkgdir/usr/lib/"
	mv "$pkgdir/usr/share/appdata" "$pkgdir/usr/share/applications" "$pkgdir/usr/share/icons" "$subpkgdir/usr/share/"
}

sha512sums="225e222e5f2c55be4571094ccaf02a92e162dfc35fd0fe504084e21e358b888a72f9992f9f9edaf1d496eb673af74a0d825ae5cf6ef7f0f1ab51d32419722c32  redshift-1.12.tar.xz"