mirror of
https://github.com/dslm4515/BMLFS.git
synced 2026-01-14 00:33:30 +00:00
10 lines
284 B
Bash
10 lines
284 B
Bash
#! /bin/bash
|
|
|
|
# libbytesize-2.1
|
|
# source: https://github.com/storaged-project/libbytesize/releases/download/2.1/libbytesize-2.1.tar.gz
|
|
|
|
./configure --prefix=/usr $BUILDTRUPLE --with-python3 &&
|
|
|
|
read -p "Compile? " && make -j2 &&
|
|
read -p "Install? " && sudo -S porg -lD "make install"
|