Add kvazaar
Closes #173 Signed-off-by: nanake <nanake@users.noreply.github.com>
This commit is contained in:
parent
d4de0513b5
commit
c406209c93
1 changed files with 45 additions and 0 deletions
45
scripts.d/50-kvazaar.sh
Executable file
45
scripts.d/50-kvazaar.sh
Executable file
|
@ -0,0 +1,45 @@
|
|||
#!/bin/bash
|
||||
|
||||
SCRIPT_REPO="https://github.com/ultravideo/kvazaar.git"
|
||||
SCRIPT_COMMIT="76ce0c7716f593b5f4614aa864603684dd4fae3d"
|
||||
|
||||
ffbuild_enabled() {
|
||||
return 0
|
||||
}
|
||||
|
||||
ffbuild_dockerbuild() {
|
||||
git-mini-clone "$SCRIPT_REPO" "$SCRIPT_COMMIT" kvazaar
|
||||
cd kvazaar
|
||||
|
||||
./autogen.sh
|
||||
|
||||
local myconf=(
|
||||
--prefix="$FFBUILD_PREFIX"
|
||||
--disable-shared
|
||||
--enable-static
|
||||
--with-pic
|
||||
)
|
||||
|
||||
if [[ $TARGET == win* || $TARGET == linux* ]]; then
|
||||
myconf+=(
|
||||
--host="$FFBUILD_TOOLCHAIN"
|
||||
)
|
||||
else
|
||||
echo "Unknown target"
|
||||
return -1
|
||||
fi
|
||||
|
||||
./configure "${myconf[@]}"
|
||||
make -j$(nproc)
|
||||
make install
|
||||
|
||||
echo "Cflags.private: -DKVZ_STATIC_LIB" >> "$FFBUILD_PREFIX"/lib/pkgconfig/kvazaar.pc
|
||||
}
|
||||
|
||||
ffbuild_configure() {
|
||||
echo --enable-libkvazaar
|
||||
}
|
||||
|
||||
ffbuild_unconfigure() {
|
||||
echo --disable-libkvazaar
|
||||
}
|
Loading…
Reference in a new issue