summaryrefslogtreecommitdiff
path: root/community/lxlauncher/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'community/lxlauncher/PKGBUILD')
-rw-r--r--community/lxlauncher/PKGBUILD26
1 files changed, 17 insertions, 9 deletions
diff --git a/community/lxlauncher/PKGBUILD b/community/lxlauncher/PKGBUILD
index 42e2df8ef..bbfefe933 100644
--- a/community/lxlauncher/PKGBUILD
+++ b/community/lxlauncher/PKGBUILD
@@ -1,28 +1,36 @@
-# $Id: PKGBUILD 93768 2013-07-10 07:02:47Z bpiotrowski $
+# $Id: PKGBUILD 96678 2013-09-03 01:34:25Z bgyorgy $
# 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=3
+pkgrel=4
pkgdesc='Open source clone of the Asus launcher for EeePC'
arch=('i686' 'x86_64')
license=('GPL2')
url='http://lxde.org/'
groups=('lxde')
-depends=('gtk2' 'startup-notification' 'gnome-menus' 'menu-cache' 'intltool')
-makedepends=('pkgconfig')
-source=(http://downloads.sourceforge.net/sourceforge/lxde/$pkgname-$pkgver.tar.gz)
-md5sums=('16df627447838b170a72cc3a9ee21497')
+depends=('gtk2' 'startup-notification' 'lxmenu-data' 'menu-cache')
+makedepends=('intltool')
+source=(http://downloads.sourceforge.net/sourceforge/lxde/$pkgname-$pkgver.tar.gz
+ fix-empty-launcher.patch)
+md5sums=('16df627447838b170a72cc3a9ee21497'
+ '4dd715f9cccf04ef87c662cee1dcb798')
+
+prepare() {
+ cd $pkgname-$pkgver
+ # Fix empty launcher
+ patch -Np1 -i ../fix-empty-launcher.patch
+}
build() {
cd $pkgname-$pkgver
- ./configure --sysconfdir=/etc --prefix=/usr
- make
+ ./configure --sysconfdir=/etc --prefix=/usr
+ make
}
package() {
cd $pkgname-$pkgver
- make DESTDIR="$pkgdir" install
+ make DESTDIR="$pkgdir" install
}