diff options
| author | Adam Vandenberg | 2011-03-21 12:55:16 -0700 |
|---|---|---|
| committer | Adam Vandenberg | 2011-03-21 13:07:14 -0700 |
| commit | 65e007c88791d13ad97f33d0323cb893e52ee718 (patch) | |
| tree | 037065204d4bf042e729f06e89e8185695f64e86 /Library | |
| parent | 67385c9efc03c359273afe296042f81facdfb27c (diff) | |
| download | homebrew-65e007c88791d13ad97f33d0323cb893e52ee718.tar.bz2 | |
libgda - audit warnings and formatting
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/libgda.rb | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/Library/Formula/libgda.rb b/Library/Formula/libgda.rb index a8dd53e69..845ef766c 100644 --- a/Library/Formula/libgda.rb +++ b/Library/Formula/libgda.rb @@ -1,21 +1,25 @@ require 'formula' -class Libgda <Formula +class Libgda < Formula url 'http://ftp.acc.umu.se/pub/GNOME/sources/libgda/4.2/libgda-4.2.5.tar.bz2' homepage 'http://www.gnome-db.org/' sha256 'b98d6063469a1ba8226d94800732544be629c55132516de741c937e8bf175f13' + depends_on 'pkg-config' => :build depends_on 'gettext' depends_on 'glib' depends_on 'intltool' - depends_on 'pkg-config' depends_on 'readline' depends_on 'libgcrypt' - # depends_on 'sqlite' # brew's sqlite doesn't have necessary options compiled, so skipping for now + # brew's sqlite doesn't have necessary options compiled, so skipping as a dep for now + # adamv: which options does it need? def install - system "./configure", "--enable-debug", "--disable-dependency-tracking", "--prefix=#{prefix}", "--disable-binreloc", "--without-java" + system "./configure", "--enable-debug", "--disable-dependency-tracking", + "--prefix=#{prefix}", + "--disable-binreloc", + "--without-java" system "make" system "make install" end |
