mirror of
https://github.com/dslm4515/BMLFS.git
synced 2025-07-29 12:50:10 +00:00
14 lines
416 B
Bash
14 lines
416 B
Bash
#! /bin/bash
|
|
|
|
# libxklavier 5.4
|
|
# source: https://people.freedesktop.org/~svu/libxklavier-5.4.tar.bz2
|
|
|
|
cp -v ../files/config.guess-musl build-aux/config.guess &&
|
|
cp -v ../files/config.sub-musl build-aux/config.sub &&
|
|
./configure --prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--disable-static $BUILDTRUPLE &&
|
|
read -p "Compile? " && make -j2 &&
|
|
read -p "Install? " && sudo -S porg -lD "make install"
|
|
|