You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
504 B
24 lines
504 B
#!/usr/bin/env bash
|
|
|
|
LIBLURAY_ADDITIONAL_FLAGS=
|
|
|
|
CC=${FAM_CC} \
|
|
AR=${FAM_AR} \
|
|
AS=${X264_AS} \
|
|
RANLIB=${FAM_RANLIB} \
|
|
STRIP=${FAM_STRIP} \
|
|
LIBS="-lz" \
|
|
./configure \
|
|
--prefix=${INSTALL_DIR} \
|
|
--host=${TARGET} \
|
|
--with-sysroot=${SYSROOT_PATH} \
|
|
--enable-static \
|
|
--with-pic \
|
|
--without-libxml2 \
|
|
--without-fontconfig \
|
|
--disable-bdjava-jar \
|
|
${LIBLURAY_ADDITIONAL_FLAGS} || exit 1
|
|
|
|
${MAKE_EXECUTABLE} clean
|
|
${MAKE_EXECUTABLE} -j${HOST_NPROC}
|
|
${MAKE_EXECUTABLE} install
|
|
|