blob: cc3bd11ec084726581fbaf77c034ac51ce75b634 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# Description:librairie permettant d'intégrer clutter dans les applications GTK
# URL: http://www.clutter-project.org
# Maintainer: NutyX core team
# Packager: thierryn1 at hispeed dot ch
# Depends on: clutter, xorg-libxcursor, xorg-libxdamage, xorg-libxrandr, xorg-libxinerama
# Run on: clutter
name=clutter-gtk
version=1.3.2
release=1
source=(http://ftp.gnome.org/pub/GNOME/sources/$name/${version%.*}/$name-$version.tar.xz)
build() {
cd $name-$version
./configure --prefix=/usr
make
make DESTDIR=$PKG install
}
|