Zrythm installer
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

16 lines
283 B

#!@BASH@
tarball=$1
lsp_dsp_lib_ver="@LSP_DSP_LIB_VER@"
temp_lib_prefix="@TEMP_LIBRARY_PREFIX@"
export CC=@CC@
tempdir=`mktemp -d`
tar xf $tarball -C $tempdir
ls -l "$tempdir"
cd "$tempdir/lsp-dsp-lib"
make config PREFIX=$temp_lib_prefix
make -j4 && make install
rm -rf $tempdir