]> sigrok.org Git - sigrok-util.git/blame - cross-compile/macosx/sigrok-native-macosx
macosx: Refine pulseview executable invocation in wrapper script.
[sigrok-util.git] / cross-compile / macosx / sigrok-native-macosx
CommitLineData
4b4f052c
UH
1#!/bin/sh
2##
3## This file is part of the sigrok-util project.
4##
5## Copyright (C) 2015 Uwe Hermann <uwe@hermann-uwe.de>
6##
7## This program is free software; you can redistribute it and/or modify
8## it under the terms of the GNU General Public License as published by
9## the Free Software Foundation; either version 2 of the License, or
10## (at your option) any later version.
11##
12## This program is distributed in the hope that it will be useful,
13## but WITHOUT ANY WARRANTY; without even the implied warranty of
14## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15## GNU General Public License for more details.
16##
17## You should have received a copy of the GNU General Public License
b65a0b06 18## along with this program; if not, see <http://www.gnu.org/licenses/>.
4b4f052c
UH
19##
20
21set -e
22
23# The path where the compiled packages will be installed.
24PREFIX=$HOME/sr_macosx
25
26# The path where to download files to and where to build packages.
27BUILDDIR=./build
28
29# The path where the libsigrok Python bindings will be installed.
30PYPATH=$PREFIX/lib/python2.7/site-packages
31
2793b933
UH
32# Edit this to control verbose build output.
33# V="V=1 VERBOSE=1"
34
4b4f052c 35# Edit this to enable/disable/modify parallel compiles.
6a8ce4e0 36PARALLEL="-j "`sysctl -n hw.ncpu`
4b4f052c
UH
37
38# Uncomment the following lines to build with clang and run scan-build.
39# export CC=llvm-gcc
40# export CXX=llvm-g++
41# SB="scan-build -k -v"
42
43# Uncomment the following lines to build with gcc/g++.
6a8ce4e0
PET
44export CC=gcc
45export CXX=g++
4b4f052c 46
6afe728b
UH
47# Path to Qt5 binaries (needed for cmake to find the Qt5 libs).
48export PATH=`brew list qt5 | grep bin | head -n 1 | xargs dirname`":$PATH"
4b4f052c
UH
49
50# Path to Python 2/3 pkg-config files.
51# In Homebrew, pkg-config files of "keg-only" formulas (Python is one of them)
52# aren't installed into /usr/local/lib/pkgconfig (we manually reference them).
6a8ce4e0
PET
53PY2=`brew list python | grep pkgconfig | head -n 1 | xargs dirname`
54PY3=`brew list python3 | grep pkgconfig | head -n 1 | xargs dirname`
4b4f052c
UH
55
56# You usually don't need to change anything below this line.
57
58# -----------------------------------------------------------------------------
59
60P="$PREFIX/lib/pkgconfig:$PY2:$PY3"
61C="$C --prefix=$PREFIX"
62
63# Remove build directory contents (if any) and create a new build dir.
64rm -rf $BUILDDIR
65mkdir $BUILDDIR
66cd $BUILDDIR
67
68GIT_CLONE="git clone --depth=1"
69
7323621e
UH
70REPO_BASE="git://sigrok.org"
71
4b4f052c
UH
72# -----------------------------------------------------------------------------
73
74# libserialport
7323621e 75$GIT_CLONE $REPO_BASE/libserialport
4b4f052c
UH
76cd libserialport
77./autogen.sh
78mkdir build
79cd build
80../configure $C
2793b933
UH
81$SB make $PARALLEL $V
82make install $V
4b4f052c
UH
83cd ../..
84
85# libsigrok
86mkdir -p $PYPATH
7323621e 87$GIT_CLONE $REPO_BASE/libsigrok
4b4f052c
UH
88cd libsigrok
89./autogen.sh
90mkdir build
91cd build
56363ab9 92PKG_CONFIG_PATH=$P ../configure $C
2793b933
UH
93$SB make $PARALLEL $V
94PYTHONPATH=$PYPATH $SB make install $V
95$SB make check $V
4b4f052c
UH
96cd ../..
97
98# libsigrokdecode
7323621e 99$GIT_CLONE $REPO_BASE/libsigrokdecode
4b4f052c
UH
100cd libsigrokdecode
101./autogen.sh
102mkdir build
103cd build
104PKG_CONFIG_PATH=$P ../configure $C
2793b933
UH
105$SB make $PARALLEL $V
106make install $V
107$SB make check $V
4b4f052c
UH
108cd ../..
109
110# sigrok-firmware
7323621e 111$GIT_CLONE $REPO_BASE/sigrok-firmware
4b4f052c
UH
112cd sigrok-firmware
113./autogen.sh
114mkdir build
115cd build
116# Nothing gets cross-compiled here, we just need 'make install' basically.
117../configure $C
2793b933 118make install $V
4b4f052c
UH
119cd ../..
120
121# sigrok-firmware-fx2lafw
7323621e 122$GIT_CLONE $REPO_BASE/sigrok-firmware-fx2lafw
4b4f052c
UH
123cd sigrok-firmware-fx2lafw
124./autogen.sh
125mkdir build
126cd build
127# We're building the fx2lafw firmware on the host, no need to cross-compile.
128../configure $C
2793b933
UH
129make $PARALLEL $V
130make install $V
4b4f052c
UH
131cd ../..
132
133# sigrok-cli
7323621e 134$GIT_CLONE $REPO_BASE/sigrok-cli
4b4f052c
UH
135cd sigrok-cli
136./autogen.sh
137mkdir build
138cd build
139PKG_CONFIG_PATH=$P ../configure $C
2793b933
UH
140$SB make $PARALLEL $V
141make install $V
4b4f052c
UH
142cd ../..
143
144# PulseView
7323621e 145$GIT_CLONE $REPO_BASE/pulseview
4b4f052c
UH
146cd pulseview
147mkdir build
148cd build
149PKG_CONFIG_PATH=$P $SB cmake -DCMAKE_INSTALL_PREFIX:PATH=$PREFIX -DDISABLE_WERROR=y -DENABLE_TESTS=y ..
2793b933
UH
150$SB make $PARALLEL $V
151make install $V
152$SB make test $V
4b4f052c
UH
153cd ../..
154