homebrew-core/Formula/libltc.rb
Martin Delille 76c23b51cc libltc 1.1.4
Closes Homebrew/homebrew#29317.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2014-05-16 11:49:30 -07:00

12 lines
318 B
Ruby

require "formula"
class Libltc < Formula
homepage "http://x42.github.io/libltc/"
url "https://github.com/x42/libltc/releases/download/v1.1.4/libltc-1.1.4.tar.gz"
sha1 "b8ff317dc15807aaa7142366b4d13c0c9aa26959"
def install
system "./configure", "--prefix=#{prefix}"
system "make", "install"
end
end