homebrew-core/Formula/dbus-glib.rb

24 lines
674 B
Ruby
Raw Normal View History

2011-02-27 11:01:52 +00:00
require 'formula'
2011-03-21 19:59:48 +00:00
class DbusGlib < Formula
homepage 'http://www.freedesktop.org/Software/dbus'
2014-03-28 16:11:42 +00:00
url 'http://dbus.freedesktop.org/releases/dbus-glib/dbus-glib-0.102.tar.gz'
sha1 '58a8955972f6c221461a49f9c541c22e838a5776'
2011-02-27 11:01:52 +00:00
2014-03-28 17:23:57 +00:00
bottle do
sha1 "6ca096253317cc2add57bd5af718924a391ea8f4" => :mavericks
sha1 "9fb847d04b08d4f6c17aa8e76e919c899c9c3be1" => :mountain_lion
sha1 "411565ac6f2a5b74d110c97955ec9d50a25f1996" => :lion
end
2011-03-21 19:59:48 +00:00
depends_on 'pkg-config' => :build
2011-02-27 11:01:52 +00:00
depends_on 'gettext'
2011-03-21 19:59:48 +00:00
depends_on 'glib'
depends_on 'd-bus'
2011-02-27 11:01:52 +00:00
def install
2013-04-01 01:55:35 +00:00
system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}"
2011-02-27 11:01:52 +00:00
system "make install"
end
end