mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-28 23:21:53 +00:00
22 lines
701 B
Bash
22 lines
701 B
Bash
# $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
|
|
}
|