1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217
|
# This will build a FreeType binary for bundling with freetype-py on Windows,
# Linux and macOS. The environment determines if it's a 32 or 64 bit build (on
# Windows, set $env:PYTHON_ARCH="64" for a x64 build; on Linux, set it to "32"
# to explicitly make a 32 bit build).
# It can be used stand-alone, in conjunction with setup.py and on CI services
# like Travis and Appveyor. You need CMake and some C/C++ compiler suite (e.g.
# GCC, Visual Studio Community 2017, ...)
import distutils.dir_util
import distutils.file_util
import distutils.spawn
import glob
import hashlib
import os
import shutil
import ssl
import subprocess
import sys
import tarfile
import urllib.request
from os import path
import platform
# Needed for the GitHub Actions macOS CI runner, which appears to come without CAs.
import certifi
FREETYPE_HOST = "https://mirrors.sarata.com/non-gnu/freetype/"
FREETYPE_TARBALL = "freetype-2.13.2.tar.xz"
FREETYPE_URL = FREETYPE_HOST + FREETYPE_TARBALL
FREETYPE_SHA256 = "12991c4e55c506dd7f9b765933e62fd2be2e06d421505d7950a132e4f1bb484d"
HARFBUZZ_HOST = "https://github.com/harfbuzz/harfbuzz/releases/download/8.3.0/"
HARFBUZZ_TARBALL = "harfbuzz-8.3.0.tar.xz"
HARFBUZZ_URL = HARFBUZZ_HOST + HARFBUZZ_TARBALL
HARFBUZZ_SHA256 = "109501eaeb8bde3eadb25fab4164e993fbace29c3d775bcaa1c1e58e2f15f847"
root_dir = "."
build_dir = path.join(root_dir, "build")
# CMake requires an absolute path to a prefix.
prefix_dir = path.abspath(path.join(build_dir, "local"))
lib_dir = path.join(prefix_dir, "lib")
build_dir_ft = path.join(build_dir, FREETYPE_TARBALL.split(".tar")[0], "build")
build_dir_hb = path.join(build_dir, HARFBUZZ_TARBALL.split(".tar")[0], "build")
CMAKE_GLOBAL_SWITCHES = (
"-DCMAKE_COLOR_MAKEFILE=false "
'-DCMAKE_PREFIX_PATH="{}" '
'-DCMAKE_INSTALL_PREFIX="{}" '
).format(prefix_dir, prefix_dir)
# Try to use Ninja to build things if it's available. Much faster.
# On Windows, I first need to figure out how to make it aware of VC, bitness,
# etc.
if sys.platform != "win32" and distutils.spawn.find_executable("ninja"):
CMAKE_GLOBAL_SWITCHES += "-G Ninja "
bitness = None
if sys.platform == "win32":
if os.environ.get("PYTHON_ARCH", "") == "64":
print("# Making a 64 bit build.")
bitness = 64
CMAKE_GLOBAL_SWITCHES += (
"-DCMAKE_GENERATOR_PLATFORM=x64 " '-DCMAKE_GENERATOR_TOOLSET="host=x64" '
)
else:
print("# Making a 32 bit build.")
bitness = 32
if sys.platform == "darwin":
print("# Making a 64 bit build.")
CMAKE_GLOBAL_SWITCHES += (
'-DCMAKE_OSX_ARCHITECTURES="x86_64;arm64" '
'-DCMAKE_OSX_DEPLOYMENT_TARGET="10.9" '
'-DCMAKE_C_FLAGS="-O2" '
'-DCMAKE_CXX_FLAGS="-O2" '
)
bitness = 64
if "linux" in sys.platform:
c_flags = cxx_flags = "-O2"
ld_flags = ""
if platform.machine() == "x86_64":
if (
os.environ.get("PYTHON_ARCH", "") == "32"
or platform.architecture() == "32bit"
):
print("# Making a 32 bit build.")
# On a 64 bit Debian/Ubuntu, this needs gcc-multilib and g++-multilib.
# On a 64 bit Fedora, install glibc-devel and libstdc++-devel.
c_flags = "-m32 {}".format(c_flags)
cxx_flags = "-m32 {}".format(cxx_flags)
ld_flags = "-m32"
bitness = 32
else:
print("# Making a 64 bit build.")
c_flags = "-m64 {}".format(c_flags)
cxx_flags = "-m64 {}".format(cxx_flags)
ld_flags = "-m64"
bitness = 64
else:
print("# Making a '{}' build.".format(platform.machine()))
if platform.architecture() == "32bit":
bitness = 32
else:
bitness = 64
CMAKE_GLOBAL_SWITCHES += (
'-DCMAKE_C_FLAGS="{}" '.format(c_flags) +
'-DCMAKE_CXX_FLAGS="{}" '.format(cxx_flags) +
'-DCMAKE_LD_FLAGS="{}" '.format(ld_flags)
)
def shell(cmd, cwd=None):
"""Run a shell command specified by cmd string."""
subprocess.run(cmd, shell=True, check=True, cwd=cwd)
def download(url, target_path):
"""Download url to target_path."""
print("Downloading {}...".format(url))
# Create a custom context and fill in certifi CAs because GitHub Action's macOS CI
# runners don't seem to have certificates installed, leading to a download
# failure...
context = ssl.create_default_context(
ssl.Purpose.SERVER_AUTH, cafile=certifi.where()
)
with urllib.request.urlopen(url, context=context) as response, open(
target_path, "wb"
) as f:
shutil.copyfileobj(response, f)
def ensure_downloaded(url, sha256_sum):
"""Download .tar.bz2 tarball at url unless already present, extract."""
filename = path.basename(url)
tarball = path.join(build_dir, filename)
tarball_dir = filename.split(".tar")[0]
if not path.exists(tarball):
download(url, tarball)
if not path.exists(path.join(build_dir, tarball_dir, "CMakeLists.txt")):
hasher = hashlib.sha256()
with open(tarball, "rb") as tb:
hasher.update(tb.read())
assert hasher.hexdigest() == sha256_sum
with tarfile.open(tarball, "r:xz") as tb:
tb.extractall(build_dir)
distutils.dir_util.mkpath(build_dir)
distutils.dir_util.mkpath(prefix_dir)
distutils.dir_util.mkpath(build_dir_ft)
distutils.dir_util.mkpath(build_dir_hb)
ensure_downloaded(FREETYPE_URL, FREETYPE_SHA256)
ensure_downloaded(HARFBUZZ_URL, HARFBUZZ_SHA256)
print("# First, build FreeType without Harfbuzz support")
shell(
"cmake -DBUILD_SHARED_LIBS=OFF "
"-DCMAKE_DISABLE_FIND_PACKAGE_HarfBuzz=TRUE -DFT_WITH_HARFBUZZ=OFF "
"-DCMAKE_DISABLE_FIND_PACKAGE_PNG=TRUE "
"-DCMAKE_DISABLE_FIND_PACKAGE_BZip2=TRUE "
"-DCMAKE_DISABLE_FIND_PACKAGE_ZLIB=TRUE "
"-DCMAKE_DISABLE_FIND_PACKAGE_BrotliDec=TRUE "
"{} ..".format(CMAKE_GLOBAL_SWITCHES),
cwd=build_dir_ft,
)
shell("cmake --build . --config Release --target install --parallel", cwd=build_dir_ft)
print("\n# Next, build Harfbuzz and point it to the FreeType we just build.")
shell(
"cmake -DBUILD_SHARED_LIBS=OFF " +
# https://stackoverflow.com/questions/3961446
("-DCMAKE_POSITION_INDEPENDENT_CODE=ON " if bitness > 32 else "")
+ "-DHB_HAVE_FREETYPE=ON -DHB_HAVE_GLIB=OFF -DHB_HAVE_CORETEXT=OFF "
"{} ..".format(CMAKE_GLOBAL_SWITCHES),
cwd=build_dir_hb,
)
shell("cmake --build . --config Release --target install --parallel", cwd=build_dir_hb)
print("\n# Lastly, rebuild FreeType, this time with Harfbuzz support.")
harfbuzz_includes = path.join(prefix_dir, "include", "harfbuzz")
shell(
"cmake -DBUILD_SHARED_LIBS=ON "
"-DCMAKE_DISABLE_FIND_PACKAGE_HarfBuzz=FALSE -DFT_WITH_HARFBUZZ=ON "
"-DCMAKE_DISABLE_FIND_PACKAGE_PNG=TRUE "
"-DCMAKE_DISABLE_FIND_PACKAGE_BZip2=TRUE "
"-DCMAKE_DISABLE_FIND_PACKAGE_ZLIB=TRUE "
"-DCMAKE_DISABLE_FIND_PACKAGE_BrotliDec=TRUE "
'-DPKG_CONFIG_EXECUTABLE="" ' # Prevent finding system libraries
'-DHARFBUZZ_INCLUDE_DIRS="{}" '
"-DSKIP_INSTALL_HEADERS=ON "
"{} ..".format(harfbuzz_includes, CMAKE_GLOBAL_SWITCHES),
cwd=build_dir_ft,
)
shell("cmake --build . --config Release --target install --parallel", cwd=build_dir_ft)
# Move libraries from PREFIX/bin to PREFIX/lib if need be (Windows DLLs are
# treated as runtimes and may end up in bin/). This keeps setup.py simple.
target_dir = path.join(prefix_dir, "lib")
bin_so = glob.glob(path.join(prefix_dir, "bin", "*freetype*"))
bin_so.extend(glob.glob(path.join(prefix_dir, "lib64", "*freetype*")))
bin_so.extend(glob.glob(path.join(prefix_dir, "lib", "freetype*.dll")))
for so in bin_so:
so_target_name = path.basename(so)
if not so_target_name.startswith("lib"):
so_target_name = "lib" + so_target_name
lib_path = path.join(target_dir, so_target_name)
print("# Moving '{}' to '{}'".format(so, lib_path))
if not path.exists(target_dir):
os.makedirs(target_dir)
os.replace(so, lib_path)
|