FFmpeg-Builds/scripts.d/50-libmp3lame.sh

53 lines
954 B
Bash
Raw Normal View History

2020-09-04 18:56:48 +00:00
#!/bin/bash
2022-07-12 18:28:45 +00:00
SCRIPT_REPO="https://svn.code.sf.net/p/lame/svn/trunk/lame"
SCRIPT_REV="6507"
2020-09-04 18:56:48 +00:00
ffbuild_enabled() {
return 0
}
ffbuild_dockerdl() {
2022-07-12 23:46:13 +00:00
retry-tool sh -c "rm -rf lame && svn checkout '${SCRIPT_REPO}@${SCRIPT_REV}' lame"
}
ffbuild_dockerbuild() {
cd "$FFBUILD_DLDIR"/lame
2022-07-12 18:28:45 +00:00
autoreconf -i
2020-09-04 18:56:48 +00:00
local myconf=(
--prefix="$FFBUILD_PREFIX"
--disable-shared
--enable-static
--enable-nasm
--disable-gtktest
--disable-cpml
--disable-frontend
2022-07-12 18:28:45 +00:00
--disable-decoder
2020-09-04 18:56:48 +00:00
)
if [[ $TARGET == win* || $TARGET == linux* ]]; then
2020-09-04 18:56:48 +00:00
myconf+=(
--host="$FFBUILD_TOOLCHAIN"
)
else
2020-09-04 18:56:48 +00:00
echo "Unknown target"
return -1
fi
export CFLAGS="$CFLAGS -DNDEBUG"
2021-04-04 21:20:31 +00:00
./configure "${myconf[@]}"
make -j$(nproc)
make install
2020-09-04 18:56:48 +00:00
}
ffbuild_configure() {
echo --enable-libmp3lame
}
ffbuild_unconfigure() {
echo --disable-libmp3lame
}