-
Notifications
You must be signed in to change notification settings - Fork 1
/
macosx-toolchain-build.sh
executable file
·52 lines (47 loc) · 1.95 KB
/
macosx-toolchain-build.sh
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
#!/bin/bash
#
# Script to build tools for OSX.
#
# Copyright (C) 2015-2016 Sebastian Lackner
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2.1 of the License, or (at your option) any later version.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this library; if not, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
#
set -eux
VERSION="2.0.0"
deps_path="repository/raw/macosx-toolchain-$VERSION/deps"
mkdir -p "$deps_path"
# Compile native tools
mkdir -p "repository/raw/macosx-toolchain-$VERSION/tool"
for tool in clang llvm-defaults bomutils cctools cctools64 xar; do
repo_path="repository/raw/macosx-toolchain-$VERSION/tool/$tool"
[ -d "$repo_path" ] && rmdir --ignore-fail-on-non-empty "$repo_path"
if mkdir "$repo_path"; then
./server/build.py --machine "debian-stretch-x64" --dependencies "$deps_path" \
"temp/macosx-$tool-native" "$repo_path"
cp -a "$repo_path"/*.deb "$deps_path"
fi
done
# Compile dependencies
mkdir -p "repository/raw/macosx-toolchain-$VERSION/package"
for package in libjpeg-turbo liblzma libtiff liblcms2 libxml2 libxslt libopenal-soft libtxc-dxtn-s2tc; do
repo_path="repository/raw/macosx-toolchain-$VERSION/package/$package"
[ -d "$repo_path" ] && rmdir --ignore-fail-on-non-empty "$repo_path"
if mkdir "$repo_path"; then
./server/build.py --machine "debian-stretch-x64" --dependencies "$deps_path" \
"temp/macosx-$package" "$repo_path"
cp -a "$repo_path"/*-osx.tar.gz "$deps_path"
cp -a "$repo_path"/*-osx64.tar.gz "$deps_path"
fi
done