summarylogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.SRCINFO3
-rw-r--r--PKGBUILD8
2 files changed, 5 insertions, 6 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 509a20ce57b1..e5d718299aae 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,13 +1,12 @@
pkgbase = light-git
pkgdesc = Program to easily change brightness on backlight-controllers.
- pkgver = 1.1.2.r22.g5d5e3c3
+ pkgver = 1.1.2.r67.g1be06a4
pkgrel = 1
url = https://github.com/haikarainen/light
arch = i686
arch = x86_64
license = GPL3
makedepends = git
- makedepends = help2man
provides = light
conflicts = light
source = git+https://github.com/haikarainen/light.git
diff --git a/PKGBUILD b/PKGBUILD
index e0d69e40ed3a..2f5b77850d70 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,13 +2,13 @@
# Contributor: Fredrik Haikarainen <fredrik.haikarainen@gmail.com>
pkgname=light-git
-pkgver=1.1.2.r22.g5d5e3c3
+pkgver=1.1.2.r67.g1be06a4
pkgrel=1
pkgdesc='Program to easily change brightness on backlight-controllers.'
arch=('i686' 'x86_64')
url="https://github.com/haikarainen/light"
license=('GPL3')
-makedepends=('git' 'help2man')
+makedepends=('git')
conflicts=('light')
provides=('light')
source=('git+https://github.com/haikarainen/light.git')
@@ -22,11 +22,11 @@ pkgver() {
build(){
cd "$srcdir/light"
./autogen.sh
- ./configure
+ ./configure --prefix=/usr
make
}
package(){
cd "$srcdir/light"
- make DESTDIR="$pkgdir/" install
+ make DESTDIR="$pkgdir/" PREFIX=/usr install
}