Browse Source

Use git download for zlib

pull/19/head
falkTX 3 years ago
parent
commit
e90e7628fb
3 changed files with 5 additions and 5 deletions
  1. +3
    -3
      .github/workflows/plugins.yml
  2. +1
    -1
      bootstrap-common.sh
  3. +1
    -1
      setup/versions.sh

+ 3
- 3
.github/workflows/plugins.yml View File

@@ -56,13 +56,13 @@ jobs:
mkdir -p ${HOME}/PawPawBuilds/debs && \
cd ${HOME}/PawPawBuilds/debs && \
if [ ! -f 'apple-uni-sdk-10.5_20110407-0.flosoft1_amd64.deb' ]; then \
wget -c 'https://launchpad.net/~kxstudio-debian/+archive/ubuntu/toolchain/+files/apple-uni-sdk-10.5_20110407-0.flosoft1_amd64.deb' \
wget -c 'https://launchpad.net/~kxstudio-debian/+archive/ubuntu/toolchain/+files/apple-uni-sdk-10.5_20110407-0.flosoft1_amd64.deb'; \
fi && \
if [ ! -f 'apple-x86-odcctools_758.159-0kxstudio2_amd64.deb' ]; then \
wget -c 'https://launchpad.net/~kxstudio-debian/+archive/ubuntu/toolchain/+files/apple-x86-odcctools_758.159-0kxstudio2_amd64.deb' \
wget -c 'https://launchpad.net/~kxstudio-debian/+archive/ubuntu/toolchain/+files/apple-x86-odcctools_758.159-0kxstudio2_amd64.deb'; \
fi && \
if [ ! -f 'apple-x86-gcc_4.2.1~5646-1kxstudio2_amd64.deb' ]; then \
wget -c 'https://launchpad.net/~kxstudio-debian/+archive/ubuntu/toolchain/+files/apple-x86-gcc_4.2.1~5646-1kxstudio2_amd64.deb' \
wget -c 'https://launchpad.net/~kxstudio-debian/+archive/ubuntu/toolchain/+files/apple-x86-gcc_4.2.1~5646-1kxstudio2_amd64.deb'; \
fi && \
sudo dpkg -i \
'apple-uni-sdk-10.5_20110407-0.flosoft1_amd64.deb' \


+ 1
- 1
bootstrap-common.sh View File

@@ -120,7 +120,7 @@ build_autoconf libsndfile "${LIBSNDFILE_VERSION}" "--disable-alsa --disable-full
# zlib (skipped on macOS)

if [ "${MACOS}" -eq 0 ]; then
download zlib ${ZLIB_VERSION} "https://github.com/madler/zlib/archive"
download zlib ${ZLIB_VERSION} "https://github.com/madler/zlib.git" "" "git"
build_conf zlib ${ZLIB_VERSION} "--static --prefix=${PAWPAW_PREFIX}"
fi



+ 1
- 1
setup/versions.sh View File

@@ -34,7 +34,7 @@ PCRE_VERSION=8.44
SERD_VERSION=0.30.8
SORD_VERSION=0.16.8
SRATOM_VERSION=0.6.8
ZLIB_VERSION=1.2.11
ZLIB_VERSION=cacf7f1d4e3d44d871b605da3b647f07d718623f

LV2LINT_SUPPORTED=1



Loading…
Cancel
Save