mirror of
https://github.com/dslm4515/BMLFS.git
synced 2025-08-20 14:31:47 +00:00
12 lines
303 B
Bash
12 lines
303 B
Bash
#! /bin/bash
|
|
|
|
# xfce4 panel 4.14.0
|
|
# source: http://archive.xfce.org/src/xfce/xfce4-panel/4.14/xfce4-panel-4.14.0.tar.bz2
|
|
|
|
./configure --prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--enable-gtk3 $BUILDTRUPLE &&
|
|
read -p "Compile? " && make -j2 &&
|
|
read -p "Install? " && sudo -S porg -lD "make install"
|
|
|