mirror of
https://github.com/outbackdingo/ports.git
synced 2026-02-05 00:26:01 +00:00
23 lines
582 B
Plaintext
Executable File
23 lines
582 B
Plaintext
Executable File
# description : Open source software library used for creating fast, visually rich and animated graphical user interfaces
|
|
# depends : atk cogl json-glib gobject-introspection gtk3 libgudev
|
|
|
|
name=clutter
|
|
version=1.26.2
|
|
release=1
|
|
source="http://ftp.gnome.org/pub/gnome/sources/clutter/${version%.*}/clutter-$version.tar.xz"
|
|
|
|
build() {
|
|
cd $name-$version
|
|
./configure \
|
|
--prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--enable-egl-backend \
|
|
--enable-evdev-input \
|
|
--enable-wayland-backend \
|
|
--enable-wayland-compositor
|
|
make
|
|
make DESTDIR=$PKG install
|
|
|
|
rm -r $PKG/usr/share/gtk-doc
|
|
}
|