273b1f38e4
Upgrade libdbusmenu-qt to version 0.9.2. Add a dep on qjson that stops a build error. Add a dep on doxygen that stops a build error. Brew out of the source tree in `macbuild`. Tested on Lion using clang and llvm from XCode-4.3.3. Closes Homebrew/homebrew#13405. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
20 lines
488 B
Ruby
20 lines
488 B
Ruby
require 'formula'
|
|
|
|
class LibdbusmenuQt < Formula
|
|
homepage 'https://launchpad.net/libdbusmenu-qt'
|
|
url 'http://launchpad.net/libdbusmenu-qt/trunk/0.9.2/+download/libdbusmenu-qt-0.9.2.tar.bz2'
|
|
sha1 '308cc53a4a1f2db40f8ffbcfc71e987a4839ec45'
|
|
|
|
depends_on 'cmake' => :build
|
|
depends_on 'qt'
|
|
depends_on 'qjson'
|
|
depends_on 'doxygen'
|
|
|
|
def install
|
|
mkdir 'macbuild' do
|
|
args = std_cmake_args + ['..']
|
|
system "cmake", *args
|
|
system "make install"
|
|
end
|
|
end
|
|
end
|