Files
phoronix-test-suite/ob-cache/test-profiles/pts/build-ffmpeg-7.0.0/install.sh
2024-04-20 19:23:38 -05:00

13 lines
248 B
Bash

#!/bin/sh
tar -xf ffmpeg-7.0.tar.xz
echo "#!/bin/sh
cd ffmpeg-7.0
if [ \$OS_TYPE = \"BSD\" ]
then
gmake -s -j \$NUM_CPU_CORES 2>&1
else
make -s -j \$NUM_CPU_CORES 2>&1
fi
echo \$? > ~/test-exit-status" > build-ffmpeg
chmod +x build-ffmpeg