44 lines
856 B
Bash
Executable file
44 lines
856 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# https://sourceforge.net/projects/freetype/files/freetype2/
|
|
FREETYPE_SRC="https://sourceforge.net/projects/freetype/files/freetype2/2.10.4/freetype-2.10.4.tar.xz/download"
|
|
|
|
ffbuild_enabled() {
|
|
return 0
|
|
}
|
|
|
|
ffbuild_dockerbuild() {
|
|
mkdir ft
|
|
cd ft
|
|
wget -O ft.tar.gz "$FREETYPE_SRC"
|
|
tar xaf ft.tar.gz
|
|
rm ft.tar.gz
|
|
cd freetype*
|
|
|
|
local myconf=(
|
|
--prefix="$FFBUILD_PREFIX"
|
|
--disable-shared
|
|
--enable-static
|
|
)
|
|
|
|
if [[ $TARGET == win* ]]; then
|
|
myconf+=(
|
|
--host="$FFBUILD_TOOLCHAIN"
|
|
)
|
|
elif [[ $TARGET != linux* ]]; then
|
|
echo "Unknown target"
|
|
return -1
|
|
fi
|
|
|
|
./configure "${myconf[@]}"
|
|
make -j$(nproc)
|
|
make install
|
|
}
|
|
|
|
ffbuild_configure() {
|
|
echo --enable-libfreetype
|
|
}
|
|
|
|
ffbuild_unconfigure() {
|
|
echo --disable-libfreetype
|
|
}
|