mirror of
https://github.com/dslm4515/BMLFS.git
synced 2026-01-14 00:33:30 +00:00
16 lines
333 B
Bash
Executable File
16 lines
333 B
Bash
Executable File
#! /bin/bash
|
|
|
|
# source: http://libmpeg2.sourceforge.net/files/libmpeg2-0.5.1.tar.gz
|
|
|
|
|
|
|
|
sed -i 's/static const/static/' libmpeg2/idct_mmx.c &&
|
|
|
|
./configure --prefix=/usr \
|
|
--enable-shared \
|
|
--disable-static &&
|
|
|
|
read -p "Compile? " && make -j4 &&
|
|
read -p "Install? " && sudo -S porg -lD "make -j1 install"
|
|
|