Files
BMLFS/build-scripts/libvorbis-1.3.6.build

11 lines
268 B
Bash
Executable File

#! /bin/bash
# source : https://downloads.xiph.org/releases/vorbis/libvorbis-1.3.6.tar.xz
./configure --prefix=/usr --build=x86_64-linux-musl \
--disable-static &&
read -p "Compile? " && make -j4 &&
read -p "Install? " && sudo -S porg -lD "make -j1 install"