homebrew-core/Formula/d-bus.rb

45 lines
1.7 KiB
Ruby
Raw Normal View History

require 'formula'
2009-10-04 15:18:44 +00:00
2011-03-10 05:11:03 +00:00
class DBus < Formula
2009-10-04 15:18:44 +00:00
homepage 'http://www.freedesktop.org/wiki/Software/dbus'
url 'http://dbus.freedesktop.org/releases/dbus/dbus-1.6.4.tar.gz'
sha256 '5fba6b7a415d761a843fb8e0aee72db61cf13057a9ef8cdc795e5d369dc74cf1'
2011-12-16 06:26:01 +00:00
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}",
"--localstatedir=#{var}",
"--sysconfdir=#{etc}",
"--disable-xml-docs",
"--disable-doxygen-docs",
"--enable-launchd",
"--with-launchd-agent-dir=#{prefix}",
"--without-x",
"--disable-tests"
2010-12-27 18:56:42 +00:00
system "make"
ENV.deparallelize
2009-10-04 15:18:44 +00:00
system "make install"
2011-09-02 21:41:57 +00:00
(prefix+'org.freedesktop.dbus-session.plist').chmod 0644
# Generate D-Bus's UUID for this machine
system "#{bin}/dbus-uuidgen", "--ensure=#{var}/lib/dbus/machine-id"
2009-10-04 15:18:44 +00:00
end
def caveats; <<-EOS.undent
If this is your first install, automatically load on login with:
mkdir -p ~/Library/LaunchAgents
cp #{prefix}/org.freedesktop.dbus-session.plist ~/Library/LaunchAgents/
launchctl load -w ~/Library/LaunchAgents/org.freedesktop.dbus-session.plist
If this is an upgrade and you already have the org.freedesktop.dbus-session.plist loaded:
launchctl unload -w ~/Library/LaunchAgents/org.freedesktop.dbus-session.plist
cp #{prefix}/org.freedesktop.dbus-session.plist ~/Library/LaunchAgents/
launchctl load -w ~/Library/LaunchAgents/org.freedesktop.dbus-session.plist
EOS
end
2009-10-04 15:18:44 +00:00
end