mirror of
https://github.com/dslm4515/BMLFS.git
synced 2025-08-13 14:24:02 +00:00
51 lines
1.8 KiB
Bash
51 lines
1.8 KiB
Bash
#! /bin/bash
|
|
|
|
# WayFire 0.8.0
|
|
# Source: https://github.com/WayfireWM/wayfire/
|
|
# Commit: 9458f58959512222f3f154b40b0a48584033ca24
|
|
#
|
|
# $BUILD = Directory to temporarily install
|
|
# $PKGS = Directory to store built packages
|
|
#
|
|
# DEPS
|
|
# Required: wlroots, wayland-protocol, GLM, libjpeg, libexecinfo
|
|
# Required: libpng, mesa, pixman, libinput, libxkbcommon, cairo
|
|
# Required: pango
|
|
# Recommended: libappindicator, libdbusmenu
|
|
# Optional: wfconfig
|
|
|
|
# Latest release is 0.7.2
|
|
# Version 0.8.0 not released yet. Can be built from master branch.
|
|
# Last known working with posted commit.
|
|
|
|
meson --prefix=/usr -Denable_gles32=true \
|
|
-Duse_system_wfconfig="disabled" -Duse_system_wlroots="enabled" BUILD && \
|
|
|
|
ninja -C BUILD -j2 && \
|
|
|
|
sudo -S DESTDIR=${BUILD} ninja -C BUILD install && \
|
|
|
|
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------------------------------------------------------|
|
|
wayfire: WayFire
|
|
wayfire:
|
|
wayfire: Wayfire is a 3D Wayland compositor, inspired by Compiz and based on
|
|
wayfire: wlroots. It aims to create a customizable, extendable and lightweight
|
|
wayfire: environment without sacrificing its appearance.
|
|
wayfire:
|
|
wayfire: Homepage: https://github.com/WayfireWM/wayfire
|
|
wayfire:
|
|
wayfire:
|
|
EOF
|
|
sudo -S mv -v /tmp/slack-desc install/ &&
|
|
sudo -S makepkg -l y -c n $PKGS/wayfire-0.8.0-$(uname -m)-mlfs.txz &&
|
|
sudo -S rm -rf ${BUILD}/*
|