diff options
| author | Alexey Zakhlestin | 2012-10-25 21:02:14 +0400 |
|---|---|---|
| committer | Adam Vandenberg | 2012-11-18 13:15:43 -0800 |
| commit | 00b2c2bc7ec94898316f6ccbd60c9f1b7170cf80 (patch) | |
| tree | 1f3339641b4d91d350e800b09c74454f6a648ffc /Library | |
| parent | c426156dbd74fd8dea4c3c1e4f2bf275ef6f3ce2 (diff) | |
| download | homebrew-00b2c2bc7ec94898316f6ccbd60c9f1b7170cf80.tar.bz2 | |
virtuoso --HEAD
Closes #15665.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/virtuoso.rb | 16 |
1 files changed, 13 insertions, 3 deletions
diff --git a/Library/Formula/virtuoso.rb b/Library/Formula/virtuoso.rb index 4ca5b4a01..68cae567e 100644 --- a/Library/Formula/virtuoso.rb +++ b/Library/Formula/virtuoso.rb @@ -5,14 +5,24 @@ class Virtuoso < Formula url 'http://downloads.sourceforge.net/project/virtuoso/virtuoso/6.1.6/virtuoso-opensource-6.1.6.tar.gz' sha1 '03bc14b1627d16d76687f8b8659801966aab3fb4' + head 'https://github.com/openlink/virtuoso-opensource.git', :branch => 'develop/6' + # If gawk isn't found, make fails deep into the process. - depends_on 'gawk' + depends_on 'gawk' => :build + + if build.head? + depends_on :autoconf => :build + depends_on :automake => :build + depends_on :libtool => :build + end - skip_clean :all + skip_clean :la def install ENV.m64 if MacOS.prefer_64_bit? - system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}" + system "./autogen.sh" if build.head? + system "./configure", "--disable-dependency-tracking", + "--prefix=#{prefix}" system "make install" end |
