homebrew-core/Formula/ffts.rb
BrewTestBot 95884bae22 Formula files style updates.
Closes Homebrew/homebrew#42407.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2015-08-03 14:21:42 +01:00

39 lines
1.3 KiB
Ruby

class Ffts < Formula
desc "C library that computes the discrete Fourier transform"
homepage "http://anthonix.com/ffts/"
head "https://github.com/anthonix/ffts.git"
url "http://anthonix.com/ffts/releases/ffts-0.7.tar.gz"
sha256 "6362e498e5aa241661cfe9060153076b78e300a5d3c365997ba6ac2f637df3ff"
bottle do
cellar :any
sha1 "aa66ec913d790d6ea76a5bb9680150f8cb55e84c" => :yosemite
sha1 "b2cbeeb8dfae98c1dfbaea17aae5ee85d904afae" => :mavericks
sha1 "3c550705b80ef08b2bfa0195d417d654e3228175" => :mountain_lion
end
def install
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--enable-sse",
"--enable-single"
system "make", "install"
end
test do
(testpath/"test.c").write <<-EOS.undent
#include <ffts/ffts.h>
#define align(x) __attribute__((aligned(x)))
int main(void) {
const size_t n = 8;
float align(32) input[n] = {0.0, };
float align(32) output[n];
ffts_plan_t* plan = ffts_init_1d(n, 1);
ffts_execute(plan, input, output);
ffts_free(plan);
}
EOS
system ENV.cc, "test.c", "-lffts", "-o", "test"
system "./test"
end
end