mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
25 lines
751 B
Bash
25 lines
751 B
Bash
# $Id: PKGBUILD 30697 2009-03-21 12:09:32Z allan $
|
|
# Maintainer: aurelien <aurelien@archlinux.org>
|
|
|
|
pkgname=xfce4-icon-theme
|
|
pkgver=4.4.3
|
|
pkgrel=1
|
|
pkgdesc="A set of icon themes for the Xfce window manager"
|
|
arch=(i686 x86_64)
|
|
license=('GPL2')
|
|
url="http://www.xfce.org/"
|
|
groups=('xfce4')
|
|
depends=('hicolor-icon-theme')
|
|
makedepends=('pkgconfig' 'intltool')
|
|
options=('!libtool')
|
|
install=${pkgname}.install
|
|
source=(http://www.xfce.org/archive/xfce-${pkgver}/src/${pkgname}-${pkgver}.tar.bz2)
|
|
md5sums=('73ce2977b84f634a6a6c5d9c27e336db')
|
|
|
|
build() {
|
|
cd ${srcdir}/${pkgname}-${pkgver}
|
|
./configure --prefix=/usr --sysconfdir=/etc --libexecdir=/usr/lib/xfce4 \
|
|
--localstatedir=/var --disable-static
|
|
make || return 1
|
|
make DESTDIR=${pkgdir} install
|
|
}
|