-
Notifications
You must be signed in to change notification settings - Fork 575
/
Copy pathbuild_tarballs.jl
45 lines (36 loc) · 1.57 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
42
43
44
45
# 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 = "Libmount"
version_string = "2.40.1"
version = VersionNumber(version_string)
# Collection of sources required to complete build
sources = [
ArchiveSource("https://mirrors.edge.kernel.org/pub/linux/utils/util-linux/v$(version.major).$(version.minor)/util-linux-$(version_string).tar.xz",
"59e676aa53ccb44b6c39f0ffe01a8fa274891c91bef1474752fad92461def24f")
]
# Bash recipe for building across all platforms
script = raw"""
cd $WORKSPACE/srcdir/util-linux-*
configure_flags=()
if [[ ${nbits} == 32 ]]; then
# We disable the year 2038 check because we don't have an alternative on the affected systems
configure_flags+=(--disable-year2038)
fi
./configure --prefix=${prefix} --build=${MACHTYPE} --host=${target} --disable-all-programs --enable-libblkid --enable-libmount ${configure_flags[@]}
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 = filter!(Sys.islinux, supported_platforms())
# The products that we will ensure are always built
products = [
LibraryProduct("libmount", :libmount)
]
# Dependencies that must be installed before this package can be built
dependencies = Dependency[
]
# Build the tarballs, and possibly a `build.jl` as well.
build_tarballs(ARGS, name, version, sources, script, platforms, products, dependencies;
julia_compat="1.6", preferred_gcc_version=v"5")