homebrew-core/Formula/d-bus.rb
Mike Arthur 4c1c677fee Standardise on d-bus.rb
Improve dbus formula.

Signed-off-by: Max Howell <max@methylblue.com>

The patch was merged upstream.

The launchctl stuff apparently didn't work properly.
2009-12-05 19:09:07 +00:00

24 lines
792 B
Ruby

require 'formula'
class DBus <Formula
url 'http://dbus.freedesktop.org/releases/dbus/dbus-1.2.16.tar.gz'
homepage 'http://www.freedesktop.org/wiki/Software/dbus'
md5 'c7a47b851ebe02f6726b65b78d1b730b'
# Don't clean the empty directories that D-Bus needs
skip_clean "etc/dbus-1/session.d"
skip_clean "etc/dbus-1/system.d"
skip_clean "var/run/dbus"
def install
# Fix the TMPDIR to one D-Bus doesn't reject due to odd symbols
ENV["TMPDIR"] = "/tmp"
system "./configure", "--prefix=#{prefix}", "--disable-xml-docs",
"--disable-doxygen-docs", "--disable-dependency-tracking"
system "make install"
# Generate D-Bus's UUID for this machine
system "#{prefix}/bin/dbus-uuidgen",
"--ensure=#{prefix}/var/lib/dbus/machine-id"
end
end