homebrew-core/Formula/libgda.rb

31 lines
892 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
homepage 'http://www.gnome-db.org/'
url 'http://ftp.gnome.org/pub/GNOME/sources/libgda/5.2/libgda-5.2.0.tar.xz'
2013-11-13 06:57:02 +00:00
sha256 '41bd14aaaf50efc7b80d7279c69ed9c90d3a1894cb5123385d86883a1d7d5f30'
revision 1
2011-02-27 10:59:45 +00:00
2011-03-21 19:55:16 +00:00
depends_on 'pkg-config' => :build
2013-02-03 20:40:06 +00:00
depends_on 'intltool' => :build
2013-11-13 06:57:02 +00:00
depends_on 'itstool' => :build
2011-02-27 10:59:45 +00:00
depends_on 'gettext'
depends_on 'glib'
depends_on 'readline'
2011-02-27 10:59:45 +00:00
depends_on 'libgcrypt'
2013-11-13 06:57:02 +00:00
depends_on 'sqlite'
2011-02-27 10:59:45 +00:00
def install
ENV.libxml2
2013-11-13 06:57:02 +00:00
system "./configure", "--disable-debug",
"--disable-dependency-tracking",
"--disable-silent-rules",
2011-03-21 19:55:16 +00:00
"--prefix=#{prefix}",
"--disable-binreloc",
2013-11-13 06:57:02 +00:00
"--disable-gtk-doc",
2011-03-21 19:55:16 +00:00
"--without-java"
2011-02-27 10:59:45 +00:00
system "make"
system "make install"
end
end