-
Notifications
You must be signed in to change notification settings - Fork 569
/
Copy pathbuild_tarballs.jl
41 lines (34 loc) · 1.38 KB
/
build_tarballs.jl
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
# Note that this script can accept some limited command-line arguments, run
# `julia build_tarballs.jl --help` to see a usage message.
using BinaryBuilder
name = "Xorg_libXfixes"
version = v"5.0.3"
# Collection of sources required to build libXfixes
sources = [
ArchiveSource("https://www.x.org/archive/individual/lib/libXfixes-$(version).tar.bz2",
"de1cd33aff226e08cefd0e6759341c2c8e8c9faf8ce9ac6ec38d43e287b22ad6"),
]
# Bash recipe for building across all platforms
script = raw"""
cd $WORKSPACE/srcdir/libXfixes-*/
CPPFLAGS="-I${prefix}/include"
# When compiling for things like ppc64le, we need newer `config.sub` files
update_configure_scripts
./configure --prefix=${prefix} --host=${target} --enable-malloc0returnsnull=no
make -j${nproc}
make install
"""
# These are the platforms we will build for by default, unless further
# platforms are passed in on the command line
platforms = [p for p in supported_platforms() if Sys.islinux(p) || Sys.isfreebsd(p)]
products = [
LibraryProduct("libXfixes", :libXfixes),
]
# Dependencies that must be installed before this package can be built
dependencies = [
BuildDependency("Xorg_xorgproto_jll"),
BuildDependency("Xorg_util_macros_jll"),
Dependency("Xorg_libX11_jll"),
]
# Build the tarballs, and possibly a `build.jl` as well.
build_tarballs(ARGS, name, version, sources, script, platforms, products, dependencies)