mirror of
https://github.com/dslm4515/BMLFS.git
synced 2025-08-16 16:39:38 +00:00
13 lines
372 B
Bash
13 lines
372 B
Bash
#! /bin/bash
|
|
|
|
# xfce4 settings 4.14.0
|
|
# source: http://archive.xfce.org/src/xfce/xfce4-settings/4.14/xfce4-settings-4.14.0.tar.bz2
|
|
|
|
./configure --prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--enable-sound-settings \
|
|
--enable-pluggable-dialogs $BUILDTRUPLE &&
|
|
read -p "Compile? " && make -j2 &&
|
|
read -p "Install? " && sudo -S porg -lD "make install"
|
|
|