mirror of
https://github.com/dslm4515/BMLFS.git
synced 2025-08-20 14:31:47 +00:00
13 lines
339 B
Bash
13 lines
339 B
Bash
#! /bin/bash
|
|
|
|
# POPT 1.16
|
|
# source: ftp://anduin.linuxfromscratch.org/BLFS/popt/popt-1.16.tar.gz
|
|
|
|
cp -v ../files/config.sub-musl config.sub
|
|
cp -v ../files/config.guess-musl config.guess
|
|
|
|
./configure --prefix=/usr --disable-static $BUILDTRUPLE &&
|
|
|
|
read -p "Compile? " && make -j2 &&
|
|
read -p "Install? " && sudo -S porg -lD "make install"
|