Skip to content

Commit

Permalink
Revert "chore(node-medley): add macos deployment target into install-…
Browse files Browse the repository at this point in the history
…deps script"

This reverts commit a2f7dc2.
  • Loading branch information
vittee committed May 23, 2024
1 parent 5558221 commit f0f7e3a
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions packages/node-medley/scripts/install-deps.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

TAGLIB_VERSION=1.13.1
LIBSAMPLERATE_VERSION=0.2.2
MACOSX_DEPLOYMENT_TARGET=10.9

SUDO=sudo
if [ "$1" = "--no-sudo" ]; then
Expand All @@ -18,7 +17,6 @@ cd taglib \
-DCMAKE_POSITION_INDEPENDENT_CODE=ON \
-DCMAKE_INSTALL_PREFIX=/usr/local \
-DCMAKE_BUILD_TYPE=Release \
-DMACOSX_DEPLOYMENT_TARGET=${MACOSX_DEPLOYMENT_TARGET}
. \
&& make -j 2 \
&& ${SUDO} make install
Expand All @@ -34,9 +32,7 @@ wget https://github.com/libsndfile/libsamplerate/releases/download/0.2.2/libsamp
tar xvf libsamplerate.tar.gz
mv libsamplerate-* libsamplerate
cd libsamplerate \
&& cmake \
-DMACOSX_DEPLOYMENT_TARGET=${MACOSX_DEPLOYMENT_TARGET} \
. \
&& cmake . \
&& make -j 2 \
&& ${SUDO} make install

Expand Down

0 comments on commit f0f7e3a

Please sign in to comment.