mirror of
https://github.com/BtbN/FFmpeg-Builds.git
synced 2025-06-12 05:17:39 +02:00
Add initial scripts for lv2, still missing dependencies.
This commit is contained in:
@ -18,6 +18,7 @@ ffbuild_dockerbuild() {
|
||||
|
||||
local myconf=(
|
||||
--prefix="$FFBUILD_PREFIX"
|
||||
--without-python
|
||||
--disable-maintainer-mode
|
||||
--disable-shared
|
||||
--enable-static
|
||||
|
32
scripts.d/45-lv2.sh
Executable file
32
scripts.d/45-lv2.sh
Executable file
@ -0,0 +1,32 @@
|
||||
#!/bin/bash
|
||||
|
||||
LV2_REPO="https://gitlab.com/lv2/lv2.git"
|
||||
LV2_COMMIT="ba34a58b32839491335b5bcbda46e11c4b209cbc"
|
||||
|
||||
ffbuild_enabled() {
|
||||
return 0
|
||||
}
|
||||
|
||||
ffbuild_dockerstage() {
|
||||
to_df "ADD $SELF /stage.sh"
|
||||
to_df "RUN run_stage"
|
||||
}
|
||||
|
||||
ffbuild_dockerbuild() {
|
||||
git-mini-clone "$LV2_REPO" "$LV2_COMMIT" lv2
|
||||
cd lv2
|
||||
git submodule update --init --recursive --depth 1
|
||||
|
||||
local mywaf=(
|
||||
--prefix="$FFBUILD_PREFIX"
|
||||
--no-plugins
|
||||
--no-coverage
|
||||
)
|
||||
|
||||
CC="${FFBUILD_CROSS_PREFIX}gcc" CXX="${FFBUILD_CROSS_PREFIX}g++" ./waf configure "${mywaf[@]}"
|
||||
./waf -j$(nproc)
|
||||
./waf install
|
||||
|
||||
cd ..
|
||||
rm -rf lv2
|
||||
}
|
44
scripts.d/50-lilv.sh
Executable file
44
scripts.d/50-lilv.sh
Executable file
@ -0,0 +1,44 @@
|
||||
#!/bin/bash
|
||||
|
||||
LILV_REPO="https://gitlab.com/lv2/lilv.git"
|
||||
LILV_COMMIT="71a2ff5170caaa052814cce19b3de927d10d0e24"
|
||||
|
||||
ffbuild_enabled() {
|
||||
# Still has missing dependencies
|
||||
return -1
|
||||
}
|
||||
|
||||
ffbuild_dockerstage() {
|
||||
to_df "ADD $SELF /stage.sh"
|
||||
to_df "RUN run_stage"
|
||||
}
|
||||
|
||||
ffbuild_dockerbuild() {
|
||||
git-mini-clone "$LILV_REPO" "$LILV_COMMIT" lilv
|
||||
cd lilv
|
||||
git submodule update --init --recursive --depth 1
|
||||
|
||||
local mywaf=(
|
||||
--prefix="$FFBUILD_PREFIX"
|
||||
--static
|
||||
--no-shared
|
||||
--no-bindings
|
||||
--no-utils
|
||||
--no-bash-completion
|
||||
)
|
||||
|
||||
CC="${FFBUILD_CROSS_PREFIX}gcc" CXX="${FFBUILD_CROSS_PREFIX}g++" ./waf configure "${mywaf[@]}"
|
||||
./waf -j$(nproc)
|
||||
./waf install
|
||||
|
||||
cd ..
|
||||
rm -rf lilv
|
||||
}
|
||||
|
||||
ffbuild_configure() {
|
||||
echo --enable-lv2
|
||||
}
|
||||
|
||||
ffbuild_unconfigure() {
|
||||
echo --disable-lv2
|
||||
}
|
Reference in New Issue
Block a user