mirror of
https://github.com/dslm4515/BMLFS.git
synced 2025-08-20 14:31:47 +00:00
18 lines
574 B
Bash
18 lines
574 B
Bash
#! /bin/bash
|
|
|
|
# Fluxbox 1.3.7
|
|
# Source: https://downloads.sourceforge.net/fluxbox/fluxbox-1.3.7.tar.xz
|
|
|
|
ac_cv_lib_X11_XOpenDisplay=yes \
|
|
ac_cv_lib_Xft_XftFontOpen=yes \
|
|
ac_cv_lib_Xrender_XRenderCreatePicture=yes \
|
|
ac_cv_lib_Xpm_XpmReadFileToPixmap=yes \
|
|
ac_cv_lib_Xinerama_XineramaQueryScreens=yes \
|
|
ac_cv_lib_Xext_XShapeCombineShape=yes \
|
|
ac_cv_lib_Xrandr_XRRQueryExtension=yes \
|
|
ac_cv_lib_fribidi_fribidi_version_info=yes \
|
|
./configure --prefix=/usr --disable-nls $BUILDTRUPLE &&
|
|
|
|
read -p "Compile? " && make -j2 &&
|
|
read -p "Install? " && sudo -S porg -lD "make install"
|