diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2009-04-08 09:48:54 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2009-04-08 09:48:54 +0000 |
commit | 66ad829123c04aec6fea519fb89c788701df3d72 (patch) | |
tree | 7215ef63f54ce171287d0738ed28b30c808a74cd | |
parent | 97df59c1b9956d2b948ffb731934940932d72e7c (diff) | |
download | aports-66ad829123c04aec6fea519fb89c788701df3d72.tar.bz2 aports-66ad829123c04aec6fea519fb89c788701df3d72.tar.xz |
x11/xbacklight: new aport
Sets backlight level using the RandR 1.2 BACKLIGHT output property
-rw-r--r-- | x11/xbacklight/APKBUILD | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/x11/xbacklight/APKBUILD b/x11/xbacklight/APKBUILD new file mode 100644 index 0000000000..108fcdc924 --- /dev/null +++ b/x11/xbacklight/APKBUILD @@ -0,0 +1,20 @@ +# Maintainer: Natanael Copa <ncopa@alpinelinux.org> +pkgname=xbacklight +pkgver=1.1 +pkgrel=0 +pkgdesc="Sets backlight level using the RandR 1.2 BACKLIGHT output property" +url="http://xorg.freedesktop.org/" +license="custom" +subpackages="$pkgname-doc" +depends="libx11 libxrandr uclibc" +makedepends="pkgconfig libx11-dev libxrandr-dev" +source="http://xorg.freedesktop.org/releases/individual/app/$pkgname-$pkgver.tar.bz2" + +build () +{ + cd "$srcdir"/$pkgname-$pkgver + ./configure --prefix=/usr --mandir=/usr/share/man || return 1 + make || return 1 + make DESTDIR="$pkgdir" install || return 1 +} +md5sums="51b4a1c0ae2b3bd77417306fd78a3e94 xbacklight-1.1.tar.bz2" |