Add libass and all its dependencies
This commit is contained in:
parent
1afc43b4c8
commit
b9a9ddd37e
9 changed files with 314 additions and 1 deletions
52
scripts.d/25-fribidi.sh
Executable file
52
scripts.d/25-fribidi.sh
Executable file
|
@ -0,0 +1,52 @@
|
|||
#!/bin/bash
|
||||
|
||||
FRIBIDI_REPO="https://github.com/fribidi/fribidi.git"
|
||||
FRIBIDI_COMMIT="c75a94c84ad1c7d3a3df89b42370933976f4ba59"
|
||||
|
||||
ffbuild_enabled() {
|
||||
return 0
|
||||
}
|
||||
|
||||
ffbuild_dockerstage() {
|
||||
to_df "ADD $SELF /root/fribidi.sh"
|
||||
to_df "RUN bash -c 'source /root/fribidi.sh && ffbuild_dockerbuild && rm /root/fribidi.sh'"
|
||||
}
|
||||
|
||||
ffbuild_dockerbuild() {
|
||||
git clone "$FRIBIDI_REPO" fribidi || return -1
|
||||
cd fribidi
|
||||
git checkout "$FRIBIDI_COMMIT" || return -1
|
||||
|
||||
local myconf=(
|
||||
--prefix="$FFBUILD_PREFIX"
|
||||
--disable-shared
|
||||
--enable-static
|
||||
--with-pic
|
||||
)
|
||||
|
||||
if [[ $TARGET == win* ]]; then
|
||||
myconf+=(
|
||||
--host="$FFBUILD_TOOLCHAIN"
|
||||
)
|
||||
else
|
||||
echo "Unknown target"
|
||||
return -1
|
||||
fi
|
||||
|
||||
./autogen.sh "${myconf[@]}" || return -1
|
||||
make || return -1
|
||||
make install || return -1
|
||||
|
||||
sed -i 's/Cflags:/Cflags: -DFRIBIDI_LIB_STATIC/' "$FFBUILD_PREFIX"/lib/pkgconfig/fribidi.pc || return -1
|
||||
|
||||
cd ..
|
||||
rm -rf fribidi
|
||||
}
|
||||
|
||||
ffbuild_configure() {
|
||||
echo --enable-libfribidi
|
||||
}
|
||||
|
||||
ffbuild_unconfigure() {
|
||||
echo --disable-libfribidi
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue