PKGBUILDs/community/clutter/PKGBUILD

23 lines
701 B
Bash
Raw Normal View History

2009-10-10 02:15:33 +00:00
# $Id: PKGBUILD 2915 2009-09-23 12:43:08Z spupykin $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Contributor: William Rea <sillywilly@gmail.com>
pkgname=clutter
pkgver=1.0.6
pkgrel=1
pkgdesc="A GObject based library for creating fast, visually rich graphical user interfaces"
arch=('i686' 'x86_64')
url="http://clutter-project.org/"
options=('!libtool')
license=("LGPL")
depends=('gtk2' 'libgl')
source=(http://www.clutter-project.org/sources/clutter/1.0/clutter-$pkgver.tar.bz2)
md5sums=('477e9093b2869f961e7295dab7b92d6b')
build() {
cd $startdir/src/clutter-$pkgver
./configure --prefix=/usr --enable-python --enable-gtk
make || return 1
make DESTDIR=$startdir/pkg install
}