mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
24 lines
737 B
Bash
24 lines
737 B
Bash
# $Id: PKGBUILD 28216 2009-02-28 11:27:39Z andyrtr $
|
|
# Maintainer: Tobias Kieslich <tobias funnychar archlinux.org>
|
|
|
|
pkgname=xfwm4-themes
|
|
pkgver=4.6.0
|
|
pkgrel=1
|
|
pkgdesc="A set of additionnal themes for the Xfce window manager"
|
|
arch=(i686 x86_64)
|
|
license=('GPL2')
|
|
url="http://www.xfce.org/"
|
|
groups=('xfce4')
|
|
depends=("xfwm4>=${pkgver}")
|
|
makedepends=('pkgconfig')
|
|
options=('!libtool')
|
|
source=(http://www.xfce.org/archive/xfce-${pkgver}/src/${pkgname}-${pkgver}.tar.bz2)
|
|
md5sums=('4dc5cb29cbd40e3b9dece12a85e20854')
|
|
|
|
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
|
|
}
|