summaryrefslogtreecommitdiff
path: root/community/lxlauncher
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2011-08-02 04:35:55 +0000
committerroot <root@rshg054.dnsready.net>2011-08-02 04:35:55 +0000
commitbf35116f9d203dcafce808a6c7b3dd5a0db8afbc (patch)
treef9551a1d3c67d2113cc5fc5c3f8816bcbaad0540 /community/lxlauncher
parent1173ff2dba7d0fd3c45f170a5e353a76b7a5da2f (diff)
Tue Aug 2 04:35:55 UTC 2011
Diffstat (limited to 'community/lxlauncher')
-rw-r--r--community/lxlauncher/PKGBUILD36
1 files changed, 13 insertions, 23 deletions
diff --git a/community/lxlauncher/PKGBUILD b/community/lxlauncher/PKGBUILD
index 9db05a071..743a83d99 100644
--- a/community/lxlauncher/PKGBUILD
+++ b/community/lxlauncher/PKGBUILD
@@ -1,9 +1,9 @@
-#$Id: PKGBUILD 12709 2010-03-12 12:03:21Z angvp $
+#$Id: PKGBUILD 52832 2011-07-28 23:39:16Z angvp $
# Maintainer: Angel 'angvp' Velasquez <angvp[at]archlinux.com.ve>
# Maintainer: Geoffroy Carrier <geoffroy.carrier@koon.fr>
pkgname=lxlauncher
-pkgver=0.2.1
-pkgrel=3
+pkgver=0.2.2
+pkgrel=1
pkgdesc="Launcher for Asus EeePC (part of LXDE)"
arch=('i686' 'x86_64')
license=('GPL2')
@@ -11,27 +11,17 @@ 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
- lxlauncher-0.2.1-fix-SUSE-lint-warnings.patch
- lxlauncher-0.2.1-fix-for-the-new-behavior-of-libmenu-cache-0.3-series.patch
- lxlauncher-0.2.1-dsofix.patch
- intltool.patch)
-md5sums=('5dbe6076eb1a411278e1fc2bccf2d75d'
- '3a4355047d4cfb149ef6a0fa6001b990'
- 'ab568453c9bac6848ca6c8cdcf61b371'
- 'fa7fd2a1691c6bad86a5278770b38db1'
- 'bd04ebee868915da9d64ec9becc1212d')
+source=(http://downloads.sourceforge.net/sourceforge/lxde/${pkgname}-${pkgver}.tar.gz)
+md5sums=('16df627447838b170a72cc3a9ee21497')
build() {
cd "$srcdir/$pkgname-$pkgver"
- # Adding patches thanks to CWickert and AndyRTR
- patch -Np1 -i $srcdir/lxlauncher-0.2.1-fix-SUSE-lint-warnings.patch || return 1
- patch -Np1 -i $srcdir/lxlauncher-0.2.1-fix-for-the-new-behavior-of-libmenu-cache-0.3-series.patch || return 1
- patch -Np1 -i $srcdir/lxlauncher-0.2.1-dsofix.patch || return 1
- #patch -Np1 -i $srcdir/01_fix_infinite_loop.dpatch || return 1
- patch -Np1 -i $srcdir/intltool.patch || return 1
- autoreconf || return 1
- ./configure --sysconfdir=/etc --prefix=/usr || return 1
- make || return 1
- make DESTDIR="$pkgdir" install || return 1
+ autoreconf
+ ./configure --sysconfdir=/etc --prefix=/usr
+ make
+}
+
+package() {
+ cd "$srcdir/$pkgname-$pkgver"
+ make DESTDIR="$pkgdir" install
}