diff options
| author | Martin Delille | 2014-04-03 12:55:53 +0200 | 
|---|---|---|
| committer | Adam Vandenberg | 2014-05-16 07:57:03 -0700 | 
| commit | db7861c4dbf1767a5ce8c5d697df78e40f378418 (patch) | |
| tree | 7ddcaf1d974e6afe1f3b2aee7817323a68c46dae | |
| parent | 10e6ba42f2259de624d4a644bd4a55719e3fe5d8 (diff) | |
| download | homebrew-db7861c4dbf1767a5ce8c5d697df78e40f378418.tar.bz2 | |
libltc 1.1.3
Closes #28105.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
| -rw-r--r-- | Library/Formula/libltc.rb | 18 | 
1 files changed, 18 insertions, 0 deletions
| diff --git a/Library/Formula/libltc.rb b/Library/Formula/libltc.rb new file mode 100644 index 000000000..7ca4d9761 --- /dev/null +++ b/Library/Formula/libltc.rb @@ -0,0 +1,18 @@ +require "formula" + +class Libltc < Formula +  homepage "http://x42.github.io/libltc/" +  url "https://github.com/x42/libltc/releases/download/v1.1.3/libltc-1.1.3.tar.gz" +  sha1 "7a5ed324c4a8f87ae1165d8484a153efce18f803" + +  # This patch has been fixed in the master branch not released yet +  patch do +    url "https://github.com/x42/libltc/compare/v1.1.3...b98e5d4094fbbc637fc83fe25d8348e41c325cf8.diff" +    sha1 "af5b04d173070e59c870270cc7180a86e5f47f37" +  end + +  def install +    system "./configure", "--prefix=#{prefix}" +    system "make", "install" +  end +end | 
