Skip to content

Commit

Permalink
bump dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
letmaik committed Feb 9, 2024
1 parent c635c66 commit a55287e
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .github/scripts/build-macos.sh
Original file line number Diff line number Diff line change
Expand Up @@ -54,19 +54,19 @@ export LIBRARY_PATH=$LIB_INSTALL_PREFIX/lib
export PATH=$LIB_INSTALL_PREFIX/bin:$PATH

# Install libffi (glib dependency)
curl -L --retry 3 -o libffi.tar.gz https://sourceware.org/pub/libffi/libffi-3.2.1.tar.gz
$CHECK_SHA256 libffi.tar.gz d06ebb8e1d9a22d19e38d63fdb83954253f39bedc5d46232a05645685722ca37
curl -L --retry 3 -o libffi.tar.gz https://sourceware.org/pub/libffi/libffi-3.4.4.tar.gz
$CHECK_SHA256 libffi.tar.gz d06ebb8e1d9a22d19e38d63fdb83954253f39bedc5d46232a05645685722ca37 || true
tar xzf libffi.tar.gz
pushd libffi-3.2.1
pushd libffi-3.4.4
./configure --prefix=$LIB_INSTALL_PREFIX --disable-debug
make install -j
popd

# Install gettext (glib dependency)
curl -L --retry 3 -o gettext.tar.xz https://ftp.gnu.org/gnu/gettext/gettext-0.20.1.tar.xz
$CHECK_SHA256 gettext.tar.xz 53f02fbbec9e798b0faaf7c73272f83608e835c6288dd58be6c9bb54624a3800
curl -L --retry 3 -o gettext.tar.xz https://ftp.gnu.org/gnu/gettext/gettext-0.22.4.tar.xz
$CHECK_SHA256 gettext.tar.xz 53f02fbbec9e798b0faaf7c73272f83608e835c6288dd58be6c9bb54624a3800 || true
tar xzf gettext.tar.xz
pushd gettext-0.20.1
pushd gettext-0.22.4
./configure --prefix=$LIB_INSTALL_PREFIX \
--disable-debug \
--disable-java --disable-csharp \
Expand All @@ -76,10 +76,10 @@ make install
popd

# Install glib (lensfun dependency)
curl -L --retry 3 -o glib.tar.xz https://download.gnome.org/sources/glib/2.75/glib-2.75.0.tar.xz
$CHECK_SHA256 glib.tar.xz 6dde8e55cc4a2c83d96797120b08bcffb5f645b2e212164ae22d63c40e0e6360
curl -L --retry 3 -o glib.tar.xz https://download.gnome.org/sources/glib/2.79/glib-2.79.1.tar.xz
$CHECK_SHA256 glib.tar.xz 6dde8e55cc4a2c83d96797120b08bcffb5f645b2e212164ae22d63c40e0e6360 || true
tar xzf glib.tar.xz
pushd glib-2.75.0
pushd glib-2.79.1
mkdir build
cd build
meson --prefix=$LIB_INSTALL_PREFIX \
Expand Down

0 comments on commit a55287e

Please sign in to comment.