~ubuntu-branches/debian/sid/x42-plugins/sid

« back to all changes in this revision

Viewing changes to tuna.lv2/static_fft.sh

  • Committer: Package Import Robot
  • Author(s): Jaromír Mikeš
  • Date: 2015-03-23 18:26:21 UTC
  • mfrom: (1.1.6)
  • Revision ID: package-import@ubuntu.com-20150323182621-bxlw3w09u72u4ned
Tags: 20141101-1
* Imported Upstream version 20141101
* Bump Standards.
* Patch refreshed.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh
 
2
set -e
 
3
curl -L http://www.fftw.org/fftw-3.3.4.tar.gz | tar xz
 
4
cd fftw-3.3.4/
 
5
CFLAGS="-fvisibility=hidden -fPIC -Wl,--exclude-libs,ALL" \
 
6
        ./configure \
 
7
        --enable-single --enable-sse --enable-avx --disable-mpi \
 
8
        --disable-shared --enable-static
 
9
make -j2