diff options
| author | Brett Koonce | 2014-03-18 23:39:09 -0500 |
|---|---|---|
| committer | Brett Koonce | 2014-03-25 07:59:13 -0500 |
| commit | f4bb69344d8894a7e3859f0d31c3ef4aa3b0e291 (patch) | |
| tree | e84dfbd637d665ecf803d38bac246ad7809ae29c /Library/Formula | |
| parent | ade8b676d3849c31d574158778fc975664f79809 (diff) | |
| download | homebrew-f4bb69344d8894a7e3859f0d31c3ef4aa3b0e291.tar.bz2 | |
blitzwave 0.8.0
Closes #27687.
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/blitzwave.rb | 26 |
1 files changed, 24 insertions, 2 deletions
diff --git a/Library/Formula/blitzwave.rb b/Library/Formula/blitzwave.rb index d5ddce148..bf6345764 100644 --- a/Library/Formula/blitzwave.rb +++ b/Library/Formula/blitzwave.rb @@ -2,14 +2,36 @@ require 'formula' class Blitzwave < Formula homepage 'http://oschulz.github.io/blitzwave' - url 'https://github.com/downloads/oschulz/blitzwave/blitzwave-0.7.1.tar.gz' - sha1 '2a53f1a9b7967897415afce256f02693a35f380e' + url 'https://github.com/oschulz/blitzwave/archive/v0.8.0.tar.gz' + sha1 '16d96f28ba295659301ab6485782715786fd496e' + depends_on :autoconf + depends_on :automake + depends_on :libtool depends_on 'blitz' + # an automake tweak to fix compiling + # reported upstream: https://github.com/oschulz/blitzwave/issues/2 + patch :DATA + def install + system "./autogen.sh" system "./configure", "--disable-debug", "--disable-dependency-tracking", "--prefix=#{prefix}" system "make", "install" end end + +__END__ +diff --git a/configure.ac b/configure.ac +index 8d28d78..2bfe06f 100644 +--- a/configure.ac ++++ b/configure.ac +@@ -8,6 +8,7 @@ AM_INIT_AUTOMAKE([-Wall -Werror]) + AC_PROG_CXX + AC_LIBTOOL_DLOPEN + AC_PROG_LIBTOOL ++AM_PROG_AR + + AC_CHECK_PROGS(DOXYGEN, doxygen, false) + AM_CONDITIONAL([COND_DOXYGEN], [test "$DOXYGEN" != "false"]) |
