mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
33 lines
987 B
Bash
33 lines
987 B
Bash
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
|
|
# Maintainer: Ronald van Haren <ronald.archlinux.org>
|
|
# Contributor: JJDaNiMoTh <jjdanimoth@gmail.com>
|
|
# Contributor: kasa <biuta.jr@gmail.com>
|
|
|
|
pkgname=compizconfig-backend-gconf
|
|
pkgver=0.8.2
|
|
pkgrel=1
|
|
pkgdesc="Compizconfig backend for gconf"
|
|
arch=('i686' 'x86_64')
|
|
url="http://opencompositing.org"
|
|
license=('GPL')
|
|
depends=('libcompizconfig' 'gconf')
|
|
makedepends=('intltool' 'pkgconfig')
|
|
conflicts=('compizconfig-backend-gconf-git')
|
|
groups=('compiz-fusion-gtk' 'compiz-fusion')
|
|
options=('!libtool')
|
|
source=(http://releases.compiz-fusion.org/${pkgver}/${pkgname}-${pkgver}.tar.bz2)
|
|
md5sums=('4be4ef08e811713277077ba89934c332')
|
|
|
|
build() {
|
|
cd ${srcdir}/${pkgname}-${pkgver}
|
|
./configure \
|
|
--prefix=/usr \
|
|
--infodir=/usr/share/info \
|
|
--mandir=/usr/share/man \
|
|
--sysconfdir=/etc || return 1
|
|
|
|
make || return 1
|
|
make DESTDIR=${pkgdir} install || return 1
|
|
|
|
}
|
|
|