aboutsummaryrefslogtreecommitdiff
path: root/testing/freetype-harfbuzz/build
diff options
context:
space:
mode:
authorCem Keylan <cem@ckyln.com>2020-01-16 10:10:52 +0300
committerCem Keylan <cem@ckyln.com>2020-01-16 10:10:52 +0300
commit82d813506bbd3621b8e65d9a70933f06c3919115 (patch)
treeb9136038042d7f0b3352496408e72c11e7d888a1 /testing/freetype-harfbuzz/build
parentf1040b0f61d758abdc582dbdc322d81cab886349 (diff)
downloadrepository-82d813506bbd3621b8e65d9a70933f06c3919115.tar.gz
freetype-harfbuzz: remove from testing
Diffstat (limited to 'testing/freetype-harfbuzz/build')
-rwxr-xr-xtesting/freetype-harfbuzz/build40
1 files changed, 0 insertions, 40 deletions
diff --git a/testing/freetype-harfbuzz/build b/testing/freetype-harfbuzz/build
deleted file mode 100755
index 206bacd1..00000000
--- a/testing/freetype-harfbuzz/build
+++ /dev/null
@@ -1,40 +0,0 @@
-#!/bin/sh -e
-
-build_freetype() (
- cd freetype
-
- CFLAGS="$CFLAGS -DDEFAULT_TT_INTERPRETER_VERSION=TT_INTERPRETER_VERSION_40" \
- ./configure \
- --prefix=/usr \
- --enable-freetype-config \
- --with-harfbuzz="$2"
-
- make
- make DESTDIR="$1" install
-)
-
-build_harfbuzz() (
- cd harfbuzz
-
- ./configure \
- --prefix=/usr \
- --with-glib=yes \
- --with-icu=yes
-
- make
- make DESTDIR="$1" install
-)
-
-build_freetype "$1" no
-
-# Point Harfbuzz to the Freetype files.
-export FREETYPE_CFLAGS="-I$PWD/freetype/include"
-export FREETYPE_LIBS="-L$1/usr/lib -lfreetype"
-
-build_harfbuzz "$1"
-
-# Point Freetype to the Harfbuzz files.
-export HARFBUZZ_CFLAGS="-I$PWD/harfbuzz/src"
-export HARFBUZZ_LIBS="-L$PWD/harfbuzz/src/.libs -lharfbuzz"
-
-build_freetype "$1" yes