mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
47 lines
1.3 KiB
Bash
47 lines
1.3 KiB
Bash
|
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
|
||
|
# Maintainer: Ronald van Haren <ronald.archlinux.org>
|
||
|
# Contributor: Hussam Al-Tayeb ht990332@gmail.com
|
||
|
# Contributor: Khashayar Naderehvandi <khashayar [at] naderehvandi [dot] net>
|
||
|
# Contributor: JJDaNiMoTh <jjdanimoth.aur@gmail.com>
|
||
|
|
||
|
pkgname=compiz-core
|
||
|
pkgver=0.8.2
|
||
|
pkgrel=1
|
||
|
pkgdesc="Composite manager for Aiglx and Xgl"
|
||
|
url="http://www.go-compiz.org/"
|
||
|
license=('GPL' 'LGPL' 'MIT')
|
||
|
arch=('i686' 'x86_64')
|
||
|
groups=('compiz' 'compiz-kde' 'compiz-gtk' 'compiz-fusion')
|
||
|
depends=('startup-notification' 'librsvg' \
|
||
|
'libgl' 'dbus' 'mesa' 'libxslt' 'fuse')
|
||
|
makedepends=('intltool')
|
||
|
options=(!libtool !emptydirs)
|
||
|
conflicts=('compiz' 'compiz-core-git' 'compiz-git')
|
||
|
replaces=('compiz')
|
||
|
source=(http://releases.compiz.org/core/compiz-$pkgver.tar.gz)
|
||
|
md5sums=('5815da87a0cfc014d06378cb3a2efcd5')
|
||
|
|
||
|
build()
|
||
|
{
|
||
|
cd $srcdir/compiz-$pkgver
|
||
|
|
||
|
./configure --prefix=/usr \
|
||
|
--disable-gnome \
|
||
|
--disable-gtk \
|
||
|
--disable-metacity \
|
||
|
--disable-gconf \
|
||
|
--with-gconf-schema-file-dir=/etc/gconf/schemas \
|
||
|
--enable-dbus \
|
||
|
--enable-librsvg \
|
||
|
--disable-kde \
|
||
|
--disable-kde4
|
||
|
|
||
|
make || return 1
|
||
|
make DESTDIR=$pkgdir install
|
||
|
|
||
|
# install MIT license
|
||
|
install -Dm644 $srcdir/compiz-$pkgver/COPYING.MIT \
|
||
|
$pkgdir/usr/share/licenses/$pkgname/COPYING.MIT
|
||
|
}
|
||
|
|