# Conflicts: # scripts/common-functions.sh # scripts/parse-arguments.shpull/53/head
commit
1ea2b982da
@ -0,0 +1,23 @@ |
|||||||
|
#!/usr/bin/env bash |
||||||
|
|
||||||
|
./configure \ |
||||||
|
--prefix=${INSTALL_DIR} \ |
||||||
|
--host=${TARGET} \ |
||||||
|
--with-sysroot=${SYSROOT_PATH} \ |
||||||
|
--disable-shared \ |
||||||
|
--enable-static \ |
||||||
|
--disable-dependency-tracking \ |
||||||
|
--disable-fast-install \ |
||||||
|
--disable-debug \ |
||||||
|
--disable-deprecated \ |
||||||
|
--with-pic \ |
||||||
|
CC=${FAM_CC} \ |
||||||
|
AR=${FAM_AR} \ |
||||||
|
RANLIB=${FAM_RANLIB} || exit 1 |
||||||
|
|
||||||
|
${MAKE_EXECUTABLE} clean |
||||||
|
# Compiling only the static library. Just 'make' will build an executable and docs as well. |
||||||
|
${MAKE_EXECUTABLE} -j${HOST_NPROC} -C lib |
||||||
|
${MAKE_EXECUTABLE} install -C lib |
||||||
|
# Installing the .pc file |
||||||
|
${MAKE_EXECUTABLE} install-data-am |
@ -0,0 +1,9 @@ |
|||||||
|
#!/usr/bin/env bash |
||||||
|
|
||||||
|
source ${SCRIPTS_DIR}/common-functions.sh |
||||||
|
|
||||||
|
FRIBIDI_VERSION=1.0.10 |
||||||
|
|
||||||
|
downloadTarArchive \ |
||||||
|
"libfribidi" \ |
||||||
|
"https://github.com/fribidi/fribidi/releases/download/v${FRIBIDI_VERSION}/fribidi-${FRIBIDI_VERSION}.tar.xz" |
Loading…
Reference in new issue