blob: 6f071deb2072037a269ced5054f9ca6ef6c64317 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
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", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--disable-xml-docs",
"--disable-doxygen-docs",
"--without-x"
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
|