2014-04-03 10:55:53 +00:00
|
|
|
require "formula"
|
|
|
|
|
|
|
|
class Libltc < Formula
|
|
|
|
homepage "http://x42.github.io/libltc/"
|
2014-05-16 18:30:50 +00:00
|
|
|
url "https://github.com/x42/libltc/releases/download/v1.1.4/libltc-1.1.4.tar.gz"
|
|
|
|
sha1 "b8ff317dc15807aaa7142366b4d13c0c9aa26959"
|
2014-04-03 10:55:53 +00:00
|
|
|
|
2014-07-03 19:34:34 +00:00
|
|
|
bottle do
|
|
|
|
cellar :any
|
2014-10-20 08:39:11 +00:00
|
|
|
revision 1
|
|
|
|
sha1 "7c4a5165544c7219c9ed12bc39bc1cf384c995bb" => :yosemite
|
|
|
|
sha1 "c55d95885439c8d8696679742ea189db8beaca32" => :mavericks
|
|
|
|
sha1 "75242d6344965aab837d2e66569a8f128d084ff7" => :mountain_lion
|
2014-07-03 19:34:34 +00:00
|
|
|
end
|
|
|
|
|
2014-04-03 10:55:53 +00:00
|
|
|
def install
|
|
|
|
system "./configure", "--prefix=#{prefix}"
|
|
|
|
system "make", "install"
|
|
|
|
end
|
|
|
|
end
|