Skip to content

Instantly share code, notes, and snippets.

@kcliu
Created March 10, 2011 14:24
Show Gist options
  • Save kcliu/864152 to your computer and use it in GitHub Desktop.
Save kcliu/864152 to your computer and use it in GitHub Desktop.
for homebrew
require 'formula'
class DbusCxx <Formula
#head 'git://gitorious.org/dbus-cplusplus/mainline.git'
head 'git://gitorious.org/~matlinuxer2/dbus-cplusplus/matlinuxer2s-mainline.git', :branch => 'forosx'
homepage 'http://sourceforge.net/projects/dbus-cplusplus/'
depends_on 'expat'
depends_on 'd-bus'
depends_on 'libxml2'
def install
system "autoreconf -if"
system "./configure", "--prefix=#{prefix}", "--disable-doxygen-docs"
system "make install"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment