aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/tracebox.rb
diff options
context:
space:
mode:
authorGregory Detal2014-03-14 16:54:09 +0100
committerMike McQuaid2014-03-17 09:57:42 +0000
commitaf7bd157c375b5159a97a07d28b038fcc0fc3448 (patch)
tree050250b7253d61103722c41e5a94118028ca08ad /Library/Formula/tracebox.rb
parent9348d01ddd644b80211105183b79279c6fa71ac9 (diff)
downloadhomebrew-af7bd157c375b5159a97a07d28b038fcc0fc3448.tar.bz2
tracebox v0.2
Use git-base (tag) sources instead of the automatically generated tar.gz to avoid sha issues. Signed-off-by: Gregory Detal <gregory.detal@uclouvain.be>
Diffstat (limited to 'Library/Formula/tracebox.rb')
-rw-r--r--Library/Formula/tracebox.rb9
1 files changed, 7 insertions, 2 deletions
diff --git a/Library/Formula/tracebox.rb b/Library/Formula/tracebox.rb
index 445c6ef6f..2b0c2c498 100644
--- a/Library/Formula/tracebox.rb
+++ b/Library/Formula/tracebox.rb
@@ -2,12 +2,17 @@ require 'formula'
class Tracebox < Formula
homepage 'http://www.tracebox.org/'
- url 'https://drone.io/github.com/tracebox/tracebox/files/tracebox-0.1.tar.gz'
- sha1 '4656b0a6660e2a9833ff8f541d6d88034d011e7b'
+ head 'https://github.com/tracebox/tracebox.git'
+ url 'https://github.com/tracebox/tracebox.git', :tag => 'v0.2'
depends_on 'lua'
+ depends_on :autoconf
+ depends_on :automake
+ depends_on :libtool
def install
+ ENV.append "AUTOHEADER", "true"
+ system "autoreconf", "--install"
system "./configure", "--disable-debug",
"--disable-dependency-tracking",
"--disable-silent-rules",