FreonLinux/pkgbuild/mpc.build

19 lines
261 B
Plaintext
Executable File

cd $tmpdir
# Download sources
if [ ! -f "$mpc" ]; then
echo "Downloading GNU mpc sources..."
wget $mpcmirror/$mpc
tar -xf $mpc
fi
cd $mpcsrcdir
./configure --prefix=$freondir --disable-static
make -j$corecount
make install
cd $tmpdir