Files
BMLFS/build-scripts/a52dec-0.7.4.build
2019-01-11 12:39:59 -06:00

13 lines
445 B
Bash
Executable File

#! /bin/bash
# source: http://liba52.sourceforge.net/files/a52dec-0.7.4.tar.gz
./configure --prefix=/usr \
--mandir=/usr/share/man \
--enable-shared \
--disable-static \
CFLAGS="-g -O2 $([ $(uname -m) = x86_64 ] && echo -fPIC)" &&
read -p "Compile? " && make -j4 &&
read -p "Install? " && sudo -S porg -lD "make -j1 install" &&
sudo -S porg -lD+ "cp liba52/a52_internal.h /usr/include/a52dec "