mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
21 lines
576 B
Bash
21 lines
576 B
Bash
|
# Maintainer: Geoffroy Carrier <geoffroy.carrier@koon.fr>
|
||
|
pkgname=lxlauncher
|
||
|
pkgver=0.2
|
||
|
pkgrel=1
|
||
|
pkgdesc="Launcher for Asus EeePC (part of LXDE)"
|
||
|
arch=('arm')
|
||
|
license=('GPL2')
|
||
|
url="http://lxde.org/"
|
||
|
groups=('lxde')
|
||
|
depends=('gtk2' 'startup-notification')
|
||
|
makedepends=('pkgconfig')
|
||
|
source=(http://downloads.sourceforge.net/sourceforge/lxde/${pkgname}-${pkgver}.tar.gz)
|
||
|
|
||
|
build() {
|
||
|
cd "$srcdir/$pkgname-$pkgver"
|
||
|
./configure --sysconfdir=/etc --prefix=/usr || return 1
|
||
|
make || return 1
|
||
|
make DESTDIR="$pkgdir" install || return 1
|
||
|
}
|
||
|
md5sums=('fc4405e6d20c1de5eef86569ed748847')
|