mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-18 22:54:00 +00:00
25 lines
820 B
Bash
25 lines
820 B
Bash
# $Id: PKGBUILD 36307 2009-04-20 22:12:54Z andyrtr $
|
|
# Maintainer: tobias <tobias funnychar archlinux.org>
|
|
|
|
pkgname=xfce4-panel
|
|
pkgver=4.6.1
|
|
pkgrel=1
|
|
pkgdesc="Panel for the Xfce desktop environment"
|
|
arch=('i686' 'x86_64')
|
|
license=('GPL2')
|
|
url="http://www.xfce.org/"
|
|
groups=('xfce4')
|
|
depends=("libxfcegui4>=$pkgver" 'exo>=0.3.101' 'libwnck' 'hicolor-icon-theme')
|
|
makedepends=('pkgconfig' "xfconf>=$pkgver" 'intltool')
|
|
options=('!libtool')
|
|
install=${pkgname}.install
|
|
source=(http://www.xfce.org/archive/xfce-${pkgver}/src/${pkgname}-${pkgver}.tar.bz2)
|
|
md5sums=('73a366b9892152266b465d7d9c35bef4')
|
|
|
|
build() {
|
|
cd ${srcdir}/${pkgname}-${pkgver}
|
|
./configure --prefix=/usr --sysconfdir=/etc --libexecdir=/usr/lib \
|
|
--localstatedir=/var --disable-static
|
|
make || return 1
|
|
make DESTDIR=${pkgdir} install || return 1
|
|
}
|