homebrew-core/Formula/ta-lib.rb
Ted Pennings 4cd0935be7 Convert all 'def test' formulae to 'test do'
Closes Homebrew/homebrew#26942.
Closes Homebrew/homebrew#26946.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2014-02-24 19:54:02 -08:00

21 lines
572 B
Ruby

require 'formula'
class TaLib < Formula
homepage 'http://ta-lib.org/index.html'
url 'http://downloads.sourceforge.net/project/ta-lib/ta-lib/0.4.0/ta-lib-0.4.0-src.tar.gz'
sha1 'b326b91e79ca1e569e95aad91e87a38640dd5f1b'
option :universal
def install
ENV.universal_binary if build.universal?
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
bin.install 'src/tools/ta_regtest/.libs/ta_regtest'
end
test do
system "#{bin}/ta_regtest"
end
end