homebrew-core/Formula/midgard2.rb
BrewTestBot 95884bae22 Formula files style updates.
Closes Homebrew/homebrew#42407.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2015-08-03 14:21:42 +01:00

38 lines
1,001 B
Ruby

class Midgard2 < Formula
desc "Generic content repository for web and desktop applications"
homepage "http://www.midgard-project.org/"
url "https://github.com/downloads/midgardproject/midgard-core/midgard2-core-12.09.tar.gz"
sha256 "7c1d17e061df8f3b39fd8944ab97ab7220219b470f7874e74471702d2caca2cb"
head do
url "https://github.com/midgardproject/midgard-core.git", :branch => "ratatoskr"
depends_on "autoconf" => :build
depends_on "automake" => :build
depends_on "libtool" => :build
end
depends_on "pkg-config" => :build
depends_on "glib"
depends_on "dbus-glib"
depends_on "libgda"
def install
args = %W[
--disable-dependency-tracking
--prefix=#{prefix}
--with-libgda5
--with-dbus-support
--enable-introspection=no
]
if build.head?
inreplace "autogen.sh", "libtoolize", "glibtoolize"
system "./autogen.sh", *args
else
system "./configure", *args
end
system "make", "install"
end
end