mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
25 lines
710 B
Bash
25 lines
710 B
Bash
|
# $Id: PKGBUILD 28200 2009-02-28 10:50:49Z andyrtr $
|
||
|
# Maintainer: Tobias Kieslich <tobias funnychar archlinux.org>
|
||
|
|
||
|
pkgname=gtk-xfce-engine
|
||
|
pkgver=2.6.0
|
||
|
pkgrel=1
|
||
|
pkgdesc="A port of Xfce engine to GTK+-2.0"
|
||
|
arch=(i686 x86_64)
|
||
|
license=('GPL2')
|
||
|
url="http://www.xfce.org/"
|
||
|
groups=('xfce4')
|
||
|
depends=("gtk2>=2.14.7")
|
||
|
makedepends=('pkgconfig')
|
||
|
options=('!libtool')
|
||
|
source=(http://www.xfce.org/archive/xfce-4.6.0/src/${pkgname}-${pkgver}.tar.bz2)
|
||
|
md5sums=('e836705d2933d0a77c6628285e10d982')
|
||
|
|
||
|
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
|
||
|
}
|