mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
34 lines
905 B
Bash
34 lines
905 B
Bash
|
#$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>
|
||
|
|
||
|
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
||
|
# - rebuild for libpng, remove this package when updated in ABS
|
||
|
|
||
|
plugrel=1
|
||
|
|
||
|
pkgname=lxlauncher
|
||
|
pkgver=0.2.2
|
||
|
pkgrel=1.1
|
||
|
pkgdesc="Launcher for Asus EeePC (part of LXDE)"
|
||
|
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')
|
||
|
|
||
|
build() {
|
||
|
cd "$srcdir/$pkgname-$pkgver"
|
||
|
autoreconf
|
||
|
./configure --sysconfdir=/etc --prefix=/usr
|
||
|
make
|
||
|
}
|
||
|
|
||
|
package() {
|
||
|
cd "$srcdir/$pkgname-$pkgver"
|
||
|
make DESTDIR="$pkgdir" install
|
||
|
}
|