mirror of
https://github.com/mac-a-r0ni/crux-xfce4.git
synced 2025-02-02 10:42:21 +01:00
32 lines
673 B
Plaintext
32 lines
673 B
Plaintext
# Description: A toolkit for creating fast, portable, compelling dynamic UIs
|
|
# URL: https://blogs.gnome.org/clutter/
|
|
# Maintainer: mac-a-r0ni, j at lngn dot net
|
|
# Depends on: gtk3 cogl libinput
|
|
|
|
name=clutter
|
|
version=1.26.4
|
|
release=1
|
|
source=()
|
|
|
|
build() {
|
|
cd $name-$version
|
|
|
|
./configure --prefix=/usr \
|
|
--disable-introspection \
|
|
--enable-egl-backend \
|
|
--enable-gdk-backend \
|
|
--enable-wayland-backend \
|
|
--enable-x11-backend \
|
|
--enable-evdev-input \
|
|
--enable-wayland-compositor \
|
|
--disable-gtk-doc \
|
|
--disable-nls \
|
|
--disable-debug
|
|
|
|
sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
|
|
|
|
make
|
|
make DESTDIR="$PKG" install
|
|
|
|
}
|