homebrew-core/Formula/d-bus.rb

52 lines
2 KiB
Ruby
Raw Normal View History

2011-03-10 05:11:03 +00:00
class DBus < Formula
# releases: even (1.10.x) = stable, odd (1.11.x) = development
desc "Message bus system, providing inter-application communication"
homepage "https://wiki.freedesktop.org/www/Software/dbus"
2016-02-11 01:02:49 +00:00
url "https://dbus.freedesktop.org/releases/dbus/dbus-1.10.6.tar.gz"
mirror "https://mirrors.ocf.berkeley.edu/debian/pool/main/d/dbus/dbus_1.10.6.orig.tar.gz"
sha256 "b5fefa08a77edd76cd64d872db949eebc02cf6f3f8be82e4bbc641742af5d35f"
head "https://anongit.freedesktop.org/git/dbus/dbus.git"
2011-12-16 06:26:01 +00:00
2014-03-28 17:23:58 +00:00
bottle do
2016-03-22 15:13:38 +00:00
revision 1
sha256 "93ff1512d2ee0dfbf25e77822165c2a62439af86d63cd3811d325bc43195445b" => :el_capitan
sha256 "54729cfbe8f3f889012aa4cdd8565979c80ad6c8cc896cdbfe15b842e196f9b1" => :yosemite
sha256 "e50f1ade0a5871d9c0441fb129e74f45166e928d32fbf50972ada039917155a6" => :mavericks
2014-03-28 17:23:58 +00:00
end
# Patch applies the config templating fixed in https://bugs.freedesktop.org/show_bug.cgi?id=94494
# Homebrew pr/issue: 50219
patch do
url "https://raw.githubusercontent.com/Homebrew/patches/0a8a55872e/d-bus/org.freedesktop.dbus-session.plist.osx.diff"
sha256 "a8aa6fe3f2d8f873ad3f683013491f5362d551bf5d4c3b469f1efbc5459a20dc"
end
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
system "make", "install"
2013-11-13 01:55:21 +00:00
end
2011-09-02 21:41:57 +00:00
2013-11-13 01:55:21 +00:00
def post_install
# 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
test do
system "#{bin}/dbus-daemon", "--version"
end
2009-10-04 15:18:44 +00:00
end