homebrew-core/Formula/d-bus.rb

27 lines
880 B
Ruby
Raw Normal View History

require 'formula'
2009-10-04 15:18:44 +00:00
class DBus <Formula
2010-09-23 19:29:11 +00:00
url 'http://dbus.freedesktop.org/releases/dbus/dbus-1.4.0.tar.gz'
2009-10-04 15:18:44 +00:00
homepage 'http://www.freedesktop.org/wiki/Software/dbus'
2010-09-23 19:29:11 +00:00
md5 'f59618b18d2fb2bd1fce9e1c5a2a3282'
2009-10-04 15:18:44 +00:00
# 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"
2009-10-04 15:18:44 +00:00
def install
# Fix the TMPDIR to one D-Bus doesn't reject due to odd symbols
ENV["TMPDIR"] = "/tmp"
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--disable-xml-docs",
"--disable-doxygen-docs",
"--without-x"
2009-10-04 15:18:44 +00:00
system "make install"
# Generate D-Bus's UUID for this machine
2010-08-08 17:20:15 +00:00
system "#{bin}/dbus-uuidgen", "--ensure=#{prefix}/var/lib/dbus/machine-id"
2009-10-04 15:18:44 +00:00
end
end