diff options
Diffstat (limited to 'community/lxlauncher')
-rw-r--r-- | community/lxlauncher/PKGBUILD | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/community/lxlauncher/PKGBUILD b/community/lxlauncher/PKGBUILD index a3db8405c..42e2df8ef 100644 --- a/community/lxlauncher/PKGBUILD +++ b/community/lxlauncher/PKGBUILD @@ -1,11 +1,11 @@ -# $Id: PKGBUILD 80054 2012-11-15 19:13:49Z bpiotrowski $ +# $Id: PKGBUILD 93768 2013-07-10 07:02:47Z bpiotrowski $ # Maintainer: Bartłomiej Piotrowski <nospam@bpiotrowski.pl> # Contributor: Angel 'angvp' Velasquez <angvp[at]archlinux.com.ve> # Contributor: Geoffroy Carrier <geoffroy.carrier@koon.fr> pkgname=lxlauncher pkgver=0.2.2 -pkgrel=2 +pkgrel=3 pkgdesc='Open source clone of the Asus launcher for EeePC' arch=('i686' 'x86_64') license=('GPL2') @@ -17,12 +17,12 @@ source=(http://downloads.sourceforge.net/sourceforge/lxde/$pkgname-$pkgver.tar.g md5sums=('16df627447838b170a72cc3a9ee21497') build() { - cd $srcdir/$pkgname-$pkgver + cd $pkgname-$pkgver ./configure --sysconfdir=/etc --prefix=/usr make } package() { - cd $srcdir/$pkgname-$pkgver - make DESTDIR=$pkgdir install + cd $pkgname-$pkgver + make DESTDIR="$pkgdir" install } |