29 lines
824 B
Ruby
29 lines
824 B
Ruby
require 'formula'
|
|
|
|
class TaLib < Formula
|
|
homepage 'http://ta-lib.org/index.html'
|
|
url 'https://downloads.sourceforge.net/project/ta-lib/ta-lib/0.4.0/ta-lib-0.4.0-src.tar.gz'
|
|
sha1 'b326b91e79ca1e569e95aad91e87a38640dd5f1b'
|
|
|
|
bottle do
|
|
cellar :any
|
|
revision 1
|
|
sha1 "54316570c4a461b76b542cd23d862af2142e9157" => :yosemite
|
|
sha1 "8c930f8da95a9ebc47eacfe5dee8738701f31878" => :mavericks
|
|
sha1 "8d880bc6c5688afada7c144710827765b1c1a3d4" => :mountain_lion
|
|
end
|
|
|
|
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
|