mirror of
https://github.com/dslm4515/BMLFS.git
synced 2025-08-03 16:40:25 +00:00
13 lines
332 B
Bash
13 lines
332 B
Bash
#! /bin/bash
|
|
|
|
# libxfce4ui 4.14.1
|
|
# source: http://archive.xfce.org/src/xfce/libxfce4ui/4.14/libxfce4ui-4.14.1.tar.bz2
|
|
|
|
./configure --prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--enable-gladeui \
|
|
--enable-gladeui2 \
|
|
$BUILDTRUPLE &&
|
|
read -p "compile?" && make -j2 &&
|
|
read -p "install?" && sudo -S porg -lD "make install"
|