summaryrefslogtreecommitdiff
path: root/community/lxrandr/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'community/lxrandr/PKGBUILD')
-rw-r--r--community/lxrandr/PKGBUILD15
1 files changed, 9 insertions, 6 deletions
diff --git a/community/lxrandr/PKGBUILD b/community/lxrandr/PKGBUILD
index dd0433457..85ea3c7b0 100644
--- a/community/lxrandr/PKGBUILD
+++ b/community/lxrandr/PKGBUILD
@@ -1,6 +1,9 @@
+# $Id: PKGBUILD 52615 2011-07-26 12:18:23Z spupykin $
+# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Maintainer: Geoffroy Carrier <geoffroy.carrier@koon.fr>
+
pkgname=lxrandr
-pkgver=0.1.1
+pkgver=0.1.2
pkgrel=1
pkgdesc="Monitor configuration tool (part of LXDE)"
arch=('i686' 'x86_64')
@@ -8,13 +11,13 @@ license=('GPL2')
url="http://lxde.org/"
groups=('lxde')
depends=('gtk2' 'xorg-server-utils')
-makedepends=('pkgconfig')
+makedepends=('pkgconfig' 'intltool')
source=(http://downloads.sourceforge.net/sourceforge/lxde/${pkgname}-${pkgver}.tar.gz)
-md5sums=('ab2c7f6be7e4fe6d1a26e324d836453e')
+md5sums=('8a7391581541bba58839ac11dbf5b575')
build() {
cd "$srcdir/$pkgname-$pkgver"
- [ $NOEXTRACT -eq 1 ] || ./configure --sysconfdir=/etc --prefix=/usr || return 1
- make || return 1
- make DESTDIR="$pkgdir" install || return 1
+ [ -f Makefile ] || ./configure --sysconfdir=/etc --prefix=/usr
+ make
+ make DESTDIR="$pkgdir" install
}