blob: 9ad1d177458d34a9a4e9a820b8635e3cca7c525a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
$Id: PKGBUILD 94639 2010-10-08 22:08:39Z angvp $
# Maintainer: Angel Velasquez <angvp@archlinux.org>
# Maintainer: Juergen Hoetzel <juergen@archlinux.org>
pkgname=lxpanel
pkgver=0.5.6
pkgrel=1
pkgdesc="Panel of the LXDE Desktop"
arch=('i686' 'x86_64')
license=('GPL2')
url="http://lxde.org/"
groups=('lxde')
depends=('gtk2' 'alsa-lib' 'menu-cache' 'lxmenu-data')
source=(http://downloads.sourceforge.net/sourceforge/lxde/${pkgname}-${pkgver}.tar.gz
Fix-build-issue-with-symbol-alarm-showing-up-on-F14-.patch)
optdepends=(pcmanfm)
md5sums=('3c6b5498b5f4109c3913b10a66809fe6'
'afe03191cbeccfc702f9a04bffd62dbf')
build() {
cd "$srcdir/$pkgname-$pkgver"
patch -p1 -i $srcdir/Fix-build-issue-with-symbol-alarm-showing-up-on-F14-.patch
./configure --sysconfdir=/etc --prefix=/usr
make
make DESTDIR="$pkgdir" install
}
|