diff options
author | Tilman Sauerbeck <tilman@crux.nu> | 2007-06-23 16:18:06 +0200 |
---|---|---|
committer | Tilman Sauerbeck <tilman@crux.nu> | 2007-06-23 16:18:06 +0200 |
commit | 4e9ef33d5570f892eb98350bdb597db48e4f516d (patch) | |
tree | 55bfd4b438d3f7c6fd2c843dbcab7e3fc545b848 /xorg-xbacklight | |
parent | a4dd1bd7975251b64a56532abf0a1156d65c451b (diff) | |
download | xorg-4e9ef33d5570f892eb98350bdb597db48e4f516d.tar.gz xorg-4e9ef33d5570f892eb98350bdb597db48e4f516d.tar.xz |
xorg-xbacklight: initial release.
Diffstat (limited to 'xorg-xbacklight')
-rw-r--r-- | xorg-xbacklight/.footprint | 6 | ||||
-rw-r--r-- | xorg-xbacklight/.md5sum | 1 | ||||
-rw-r--r-- | xorg-xbacklight/Pkgfile | 18 |
3 files changed, 25 insertions, 0 deletions
diff --git a/xorg-xbacklight/.footprint b/xorg-xbacklight/.footprint new file mode 100644 index 00000000..26b31b20 --- /dev/null +++ b/xorg-xbacklight/.footprint @@ -0,0 +1,6 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/bin/ +-rwxr-xr-x root/root usr/bin/xbacklight +drwxr-xr-x root/root usr/man/ +drwxr-xr-x root/root usr/man/man1/ +-rw-r--r-- root/root usr/man/man1/xbacklight.1x.gz diff --git a/xorg-xbacklight/.md5sum b/xorg-xbacklight/.md5sum new file mode 100644 index 00000000..e8c6e675 --- /dev/null +++ b/xorg-xbacklight/.md5sum @@ -0,0 +1 @@ +51b4a1c0ae2b3bd77417306fd78a3e94 xbacklight-1.1.tar.bz2 diff --git a/xorg-xbacklight/Pkgfile b/xorg-xbacklight/Pkgfile new file mode 100644 index 00000000..27cb3922 --- /dev/null +++ b/xorg-xbacklight/Pkgfile @@ -0,0 +1,18 @@ +# Description: Utility to set a display's backlight level +# URL: http://xorg.freedesktop.org +# Maintainer: Tilman Sauerbeck, tilman at crux dot nu +# Depends on: xorg-libxrandr + +name=xorg-xbacklight +version=1.1 +release=1 +source=(http://xorg.freedesktop.org/releases/individual/app/xbacklight-$version.tar.bz2) + +build() { + cd xbacklight-$version + + ./configure --prefix=/usr --mandir=/usr/man + + make + make DESTDIR=$PKG install +} |