mirror of
https://github.com/dslm4515/BMLFS.git
synced 2025-08-03 16:40:25 +00:00
85 lines
2.9 KiB
Bash
85 lines
2.9 KiB
Bash
#! /bin/bash
|
|
|
|
# Clutter
|
|
# Source: https://download.gnome.org/sources/clutter/1.26/clutter-1.26.4.tar.xz
|
|
#
|
|
# $BUILD = Directory to temporarily install
|
|
# $PKGS = Directory to store built packages
|
|
#
|
|
# DEPS
|
|
# Required: ATK, Cogl, Json-glib
|
|
# Recommended: gobject-introspection, GTK+3, libgudev, libinput, libxkbcommon, Wayland
|
|
# Optional: GTK-Doc, Tslib
|
|
|
|
# If optimizing with GCC:
|
|
export CFLAGS="-march=native -pipe "
|
|
export CFLAGS+="-O3 -falign-functions=32 -ffat-lto-objects -flto=4 "
|
|
export CFLAGS+="-fno-math-errno -fno-semantic-interposition -fno-trapping-math "
|
|
export CXXFLAGS=$CFLAGS
|
|
export LDFLAGS="-flto=4 -Wl,-O2 -Wl,--as-needed "
|
|
|
|
./configure --prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--enable-egl-backend \
|
|
--enable-gdk-backend \
|
|
--with-x \
|
|
--enable-x11-backend \
|
|
--enable-evdev-input \
|
|
--enable-wayland-backend \
|
|
--enable-wayland-compositor $BUILDTRUPLE &&
|
|
# For no-Xorg/No-GL/No-GLX systems:
|
|
./configure --prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--enable-egl-backend \
|
|
--enable-gdk-backend \
|
|
--without-x \
|
|
--enable-evdev-input \
|
|
--enable-wayland-backend \
|
|
--enable-wayland-compositor \
|
|
--enable-tslib-input=yes \
|
|
--enable-x11-backend=no \
|
|
--enable-evdev-input=yes $BUILDTRUPLE
|
|
|
|
|
|
read -p "Compile?" && make -j2 &&
|
|
|
|
sudo -S make DESTDIR=$BUILD install &&
|
|
sudo -S mkdir -pv /BMAN/install /BMAN/usr/share && \
|
|
sudo -S mv $BUILD/usr/share/gtk-doc /BMAN/usr/share/ && \
|
|
|
|
cd $BUILD && sudo -S mkdir -v ${BUILD}/install &&
|
|
cat > /tmp/slack-desc << "EOF"
|
|
# HOW TO EDIT THIS FILE:
|
|
# The "handy ruler" below makes it easier to edit a package description. Line
|
|
# up the first '|' above the ':' following the base package name, and the '|'
|
|
# on the right side marks the last column you can put a character in. You must
|
|
# make exactly 11 lines for the formatting to be correct. It's also
|
|
# customary to leave one space after the ':' except on otherwise blank lines.
|
|
|
|
|-----handy-ruler------------------------------------------------------|
|
|
clutter: clutter (an open source software library)
|
|
clutter:
|
|
clutter: Clutter is an open source software library for creating fast,
|
|
clutter: visually rich, portable and animated graphical user interfaces.
|
|
clutter:
|
|
clutter:
|
|
clutter:
|
|
clutter:
|
|
clutter:
|
|
clutter:
|
|
clutter:
|
|
EOF
|
|
sudo -S mv -v /tmp/slack-desc install/ &&
|
|
sudo -S makepkg -l y -c n $PKGS/clutter-1.26.4-$(uname -m)-mlfs.txz && \
|
|
cd /BMAN && \
|
|
cat > /tmp/slack-desc << "EOF"
|
|
clutter-doc: Manuals for clutter
|
|
clutter-doc:
|
|
clutter-doc: An open source software library for creating fast, visually rich,
|
|
clutter-doc: portable and animated graphical user interfaces.
|
|
clutter-doc:
|
|
EOF
|
|
sudo -S mv -v /tmp/slack-desc install/ && \
|
|
sudo -S makepkg -l y -c n $PKGS/clutter-doc-1.26.4-noarch-mlfs.txz && \
|
|
sudo -S rm -rf ${BUILD}/* /BMAN/*
|