Browse Source

Replace github release of speexdsp with pre-autogen'd package hosted on

the vcvrack.com website
tags/v0.6.0
Andrew Belt 6 years ago
parent
commit
2642d093e1
2 changed files with 7 additions and 7 deletions
  1. +3
    -3
      README.md
  2. +4
    -4
      dep/Makefile

+ 3
- 3
README.md View File

@@ -22,18 +22,18 @@ Rack's dependencies (GLEW, glfw, etc) do not need to be installed on your system
### Mac

Install [Xcode](https://developer.apple.com/xcode/).
Install [CMake](https://cmake.org/) (for some of Rack's dependencies) and wget, preferably from [Homebrew](https://brew.sh/).
Install [CMake](https://cmake.org/) (for some of Rack's dependencies).

### Windows

Install [MSYS2](http://www.msys2.org/) and launch the mingw64 shell (not the default msys2 shell).
Install build dependencies with the pacman package manger.

pacman -S git make tar unzip mingw-w64-x86_64-gcc mingw-w64-x86_64-cmake
pacman -S git make tar unzip mingw-w64-x86_64-gcc mingw-w64-x86_64-cmake autoconf automake mingw-w64-x86_64-libtool

### Linux

With your distro's package manager, make sure you have installed `gcc`, `make`, `cmake`, `tar`, and `unzip`.
With your distro's package manager, make sure you have installed `git`, `gcc`, `make`, `cmake`, `tar`, and `unzip`.

## Building



+ 4
- 4
dep/Makefile View File

@@ -18,7 +18,7 @@ export LDFLAGS


# Commands
WGET = curl -O
WGET = curl -OL
UNTAR = tar xf
UNZIP = unzip
ifeq ($(ARCH),win)
@@ -109,9 +109,9 @@ $(jansson):
$(MAKE) -C jansson-2.10 install

$(libspeexdsp):
$(WGET) https://github.com/xiph/speexdsp/archive/SpeexDSP-1.2rc3.tar.gz
$(UNTAR) SpeexDSP-1.2rc3.tar.gz
cd speexdsp-SpeexDSP-1.2rc3 && ./autogen.sh && ./configure --prefix="$(LOCAL)"
$(WGET) https://vcvrack.com/downloads/dep/speexdsp-SpeexDSP-1.2rc3.tgz
$(UNTAR) speexdsp-SpeexDSP-1.2rc3.tgz
cd speexdsp-SpeexDSP-1.2rc3 && ./configure --prefix="$(LOCAL)"
$(MAKE) -C speexdsp-SpeexDSP-1.2rc3
$(MAKE) -C speexdsp-SpeexDSP-1.2rc3 install



Loading…
Cancel
Save