mirror of
https://github.com/dslm4515/BMLFS.git
synced 2026-01-14 00:33:30 +00:00
21 lines
587 B
Bash
Executable File
21 lines
587 B
Bash
Executable File
#! /bin/bash
|
|
|
|
# source: https://ftp.gnu.org/gnu/libcdio/libcdio-2.0.0.tar.gz
|
|
|
|
patch -Np1 -i ../libcdio-2.0.0-disable-broken-test.patch
|
|
autoreconf -vfi
|
|
|
|
./configure --prefix=/usr --disable-static &&
|
|
|
|
read -p "Compile? " && make -j4 &&
|
|
read -p "Install? " && sudo -S porg -lD "make -j1 install" &&
|
|
|
|
tar -xf ../libcdio-paranoia-10.2+0.94+2.tar.gz &&
|
|
cd libcdio-paranoia-10.2+0.94+2 &&
|
|
|
|
./configure --prefix=/usr --disable-static &&
|
|
|
|
read -p "Compile? " && make -j4 &&
|
|
read -p "Install? " && sudo -S porg -lD "make -j1 install"
|
|
~
|