Browse Source

Misc

tags/1.9.5
falkTX 10 years ago
parent
commit
6cbbada8d3
4 changed files with 16 additions and 20 deletions
  1. +7
    -5
      Makefile
  2. +1
    -1
      data/linux/README
  3. +7
    -13
      data/linux/make-binary.sh
  4. +1
    -1
      data/windows/README

+ 7
- 5
Makefile View File

@@ -784,18 +784,20 @@ endif


@echo "$(tS)---> Internal plugins: $(tE)" @echo "$(tS)---> Internal plugins: $(tE)"
ifneq ($(WIN32),true) ifneq ($(WIN32),true)
@echo "Carla-Rack: $(ANS_YES)"
@echo "Carla-Patchbay:$(ANS_YES)"
@echo "Carla-Rack: $(ANS_YES)"
else else
@echo "Carla-Rack: $(ANS_NO) $(mS)Not available for Windows$(mE)"
@echo "Carla-Patchbay:$(ANS_NO) $(mS)Not available for Windows$(mE)"
@echo "Carla-Rack: $(ANS_NO) $(mS)Not available for Windows$(mE)"
endif endif
ifeq ($(HAVE_ZYN_DEPS),true) ifeq ($(HAVE_ZYN_DEPS),true)
ifeq ($(HAVE_ZYN_UI_DEPS),true) ifeq ($(HAVE_ZYN_UI_DEPS),true)
@echo "ZynAddSubFX:$(ANS_YES) (with UI)"
@echo "ZynAddSubFX: $(ANS_YES) (with UI)"
else else
@echo "ZynAddSubFX:$(ANS_YES) (without UI) $(mS)NTK missing$(mE)"
@echo "ZynAddSubFX: $(ANS_YES) (without UI) $(mS)NTK missing$(mE)"
endif endif
else else
@echo "ZynAddSubFX:$(ANS_NO) $(mS)fftw3, mxml or zlib missing$(mE)"
@echo "ZynAddSubFX: $(ANS_NO) $(mS)fftw3, mxml or zlib missing$(mE)"
endif endif


# -------------------------------------------------------------- # --------------------------------------------------------------


+ 1
- 1
data/linux/README View File

@@ -1,6 +1,6 @@
# --- README for Carla - Linux build --- # --- README for Carla - Linux build ---


Carla is an audio plugin host, with support for many audio drivers and plugin formats.
Carla is a fully-featured audio plugin host, with support for many audio drivers and plugin formats.
It has some nice features like automation of parameters via MIDI CC and full OSC control. It has some nice features like automation of parameters via MIDI CC and full OSC control.
Currently supports LADSPA, DSSI, LV2, VST2/3 and AU plugin formats, plus GIG, SF2 and SFZ sounds banks. Currently supports LADSPA, DSSI, LV2, VST2/3 and AU plugin formats, plus GIG, SF2 and SFZ sounds banks.




+ 7
- 13
data/linux/make-binary.sh View File

@@ -6,34 +6,28 @@ if [ -f Makefile ]; then
cd data/linux cd data/linux
fi fi


VERSION="1.9.5~git20141017.10"

if [ ! -f carla-git-static_"$VERSION"_amd64.deb ]; then
wget -c https://launchpad.net/~kxstudio-debian/+archive/ubuntu/testing/+files/carla-git-static_"$VERSION"_amd64.deb
fi

if [ ! -f carla-git-static_"$VERSION"_i386.deb ]; then
wget -c https://launchpad.net/~kxstudio-debian/+archive/ubuntu/testing/+files/carla-git-static_"$VERSION"_i386.deb
fi
VERSION="1.9.5~git20141019.2"


if [ ! -d carla-git-static_"$VERSION"_amd64.deb ]; then if [ ! -d carla-git-static_"$VERSION"_amd64.deb ]; then
wget -c https://launchpad.net/~kxstudio-debian/+archive/ubuntu/testing/+files/carla-git-static_"$VERSION"_amd64.deb
dpkg -x carla-git-static_"$VERSION"_amd64.deb carla-git-static_"$VERSION"_amd64 dpkg -x carla-git-static_"$VERSION"_amd64.deb carla-git-static_"$VERSION"_amd64
fi fi


if [ ! -d carla-git-static_"$VERSION"_i386.deb ]; then if [ ! -d carla-git-static_"$VERSION"_i386.deb ]; then
wget -c https://launchpad.net/~kxstudio-debian/+archive/ubuntu/testing/+files/carla-git-static_"$VERSION"_i386.deb
dpkg -x carla-git-static_"$VERSION"_i386.deb carla-git-static_"$VERSION"_i386 dpkg -x carla-git-static_"$VERSION"_i386.deb carla-git-static_"$VERSION"_i386
fi fi


if [ ! -f unzipfx2cat32 ]; then if [ ! -f unzipfx2cat32 ]; then
wget -c https://launchpad.net/~kxstudio-debian/+archive/ubuntu/testing/+files/unzipfx-carla_1.9.4-0kxstudio1_i386.deb
dpkg -x unzipfx-carla_1.9.4-0kxstudio1_i386.deb tmpfx
wget -c https://launchpad.net/~kxstudio-debian/+archive/ubuntu/testing/+files/unzipfx-carla_1.9.5-1kxstudio1_i386.deb
dpkg -x unzipfx-carla_1.9.5-1kxstudio1_i386.deb tmpfx
mv tmpfx/opt/carla/unzipfx2cat unzipfx2cat32 mv tmpfx/opt/carla/unzipfx2cat unzipfx2cat32
rm -rf tmpfx rm -rf tmpfx
fi fi


if [ ! -f unzipfx2cat64 ]; then if [ ! -f unzipfx2cat64 ]; then
wget -c https://launchpad.net/~kxstudio-debian/+archive/ubuntu/testing/+files/unzipfx-carla_1.9.4-0kxstudio1_amd64.deb
dpkg -x unzipfx-carla_1.9.4-0kxstudio1_amd64.deb tmpfx
wget -c https://launchpad.net/~kxstudio-debian/+archive/ubuntu/testing/+files/unzipfx-carla_1.9.5-1kxstudio1_amd64.deb
dpkg -x unzipfx-carla_1.9.5-1kxstudio1_amd64.deb tmpfx
mv tmpfx/opt/carla/unzipfx2cat unzipfx2cat64 mv tmpfx/opt/carla/unzipfx2cat unzipfx2cat64
rm -rf tmpfx rm -rf tmpfx
fi fi


+ 1
- 1
data/windows/README View File

@@ -1,6 +1,6 @@
# --- README for Carla - Windows build --- # --- README for Carla - Windows build ---


Carla is an audio plugin host, with support for many audio drivers and plugin formats.
Carla is a fully-featured audio plugin host, with support for many audio drivers and plugin formats.
It has some nice features like automation of parameters via MIDI CC and full OSC control. It has some nice features like automation of parameters via MIDI CC and full OSC control.
Currently supports LADSPA, DSSI, LV2, VST2/3 and AU plugin formats, plus GIG, SF2 and SFZ sounds banks. Currently supports LADSPA, DSSI, LV2, VST2/3 and AU plugin formats, plus GIG, SF2 and SFZ sounds banks.




Loading…
Cancel
Save