diff options
author | root <root@rshg054.dnsready.net> | 2012-11-16 01:35:29 -0800 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2012-11-16 01:35:29 -0800 |
commit | 73cd7952c96190212616ca90d5afe1ce5cb2c9ce (patch) | |
tree | 274972d0d967441e136af716dd87f3cee0cee7f2 /community/lxlauncher/PKGBUILD | |
parent | 130aa30d45bf33a5ce926be8697a0e0c077cdc22 (diff) |
Fri Nov 16 01:34:04 PST 2012
Diffstat (limited to 'community/lxlauncher/PKGBUILD')
-rw-r--r-- | community/lxlauncher/PKGBUILD | 27 |
1 files changed, 14 insertions, 13 deletions
diff --git a/community/lxlauncher/PKGBUILD b/community/lxlauncher/PKGBUILD index 743a83d99..a3db8405c 100644 --- a/community/lxlauncher/PKGBUILD +++ b/community/lxlauncher/PKGBUILD @@ -1,27 +1,28 @@ -#$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> +# $Id: PKGBUILD 80054 2012-11-15 19:13:49Z 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=1 -pkgdesc="Launcher for Asus EeePC (part of LXDE)" +pkgrel=2 +pkgdesc='Open source clone of the Asus launcher for EeePC' arch=('i686' 'x86_64') license=('GPL2') -url="http://lxde.org/" +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) +source=(http://downloads.sourceforge.net/sourceforge/lxde/$pkgname-$pkgver.tar.gz) md5sums=('16df627447838b170a72cc3a9ee21497') build() { - cd "$srcdir/$pkgname-$pkgver" - autoreconf - ./configure --sysconfdir=/etc --prefix=/usr - make + cd $srcdir/$pkgname-$pkgver + ./configure --sysconfdir=/etc --prefix=/usr + make } package() { - cd "$srcdir/$pkgname-$pkgver" - make DESTDIR="$pkgdir" install + cd $srcdir/$pkgname-$pkgver + make DESTDIR=$pkgdir install } |