mirror of
https://github.com/dslm4515/BMLFS.git
synced 2026-02-01 03:26:07 +00:00
9 lines
317 B
Bash
Executable File
9 lines
317 B
Bash
Executable File
#! /bin/bash
|
|
|
|
./configure --prefix=/usr --build=x86_64-linux-musl \
|
|
--enable-shared \
|
|
--disable-static \
|
|
--docdir=/usr/share/doc/lzo-2.10
|
|
read -p "Compile?" && make -j2 &&
|
|
read -p "Install?" && sudo -S porg -lD "make -j1 install"
|