homebrew-core/Formula/libltc.rb
Baptiste Fontaine 07dc2b3c99 batch http->https fixes
Closes Homebrew/homebrew#41553.

Signed-off-by: Baptiste Fontaine <batifon@yahoo.fr>
2015-07-12 12:53:09 +02:00

21 lines
643 B
Ruby

require "formula"
class Libltc < Formula
desc "POSIX-C Library for handling Linear/Logitudinal Time Code (LTC)"
homepage "https://x42.github.io/libltc/"
url "https://github.com/x42/libltc/releases/download/v1.1.4/libltc-1.1.4.tar.gz"
sha1 "b8ff317dc15807aaa7142366b4d13c0c9aa26959"
bottle do
cellar :any
revision 1
sha1 "7c4a5165544c7219c9ed12bc39bc1cf384c995bb" => :yosemite
sha1 "c55d95885439c8d8696679742ea189db8beaca32" => :mavericks
sha1 "75242d6344965aab837d2e66569a8f128d084ff7" => :mountain_lion
end
def install
system "./configure", "--prefix=#{prefix}"
system "make", "install"
end
end