homebrew-core/Formula/libgda.rb

27 lines
802 B
Ruby
Raw Normal View History

2011-02-27 10:59:45 +00:00
require 'formula'
2011-03-21 19:55:16 +00:00
class Libgda < Formula
2011-02-27 10:59:45 +00:00
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'
2011-03-21 19:55:16 +00:00
depends_on 'pkg-config' => :build
2011-02-27 10:59:45 +00:00
depends_on 'gettext'
depends_on 'glib'
depends_on 'intltool'
depends_on 'readline'
depends_on 'libgcrypt'
2011-03-21 19:55:16 +00:00
# brew's sqlite doesn't have necessary options compiled, so skipping as a dep for now
# adamv: which options does it need?
2011-02-27 10:59:45 +00:00
def install
2011-03-21 19:55:16 +00:00
system "./configure", "--enable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--disable-binreloc",
"--without-java"
2011-02-27 10:59:45 +00:00
system "make"
system "make install"
end
end