mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
24 lines
636 B
Bash
24 lines
636 B
Bash
|
# Maintainer: Juergen Hoetzel <juergen@archlinux.org>
|
||
|
pkgname=lxde-common
|
||
|
pkgver=0.4.2
|
||
|
pkgrel=1
|
||
|
pkgdesc="Common files of the LXDE Desktop"
|
||
|
arch=('arm')
|
||
|
license=('GPL2')
|
||
|
groups=('lxde')
|
||
|
depends=('libx11' 'glib2')
|
||
|
url="http://lxde.org/"
|
||
|
# startlxde is useless without lxsession
|
||
|
optdepends=(lxsession-lite)
|
||
|
optdepends=(lxde-settings-daemon)
|
||
|
source=(http://downloads.sourceforge.net/sourceforge/lxde/${pkgname}-${pkgver}.tar.bz2)
|
||
|
md5sums=('81978c149ef7f349d904c4796d623ee6')
|
||
|
|
||
|
build() {
|
||
|
cd "$srcdir/$pkgname-$pkgver"
|
||
|
./configure --sysconfdir=/etc --prefix=/usr || return 1
|
||
|
make || return 1
|
||
|
make DESTDIR="$pkgdir" install || return 1
|
||
|
}
|
||
|
|