libdbusmenu-qt 0.9.2
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>
This commit is contained in:
parent
3f9394d47b
commit
273b1f38e4
1 changed files with 10 additions and 5 deletions
|
@ -1,15 +1,20 @@
|
|||
require 'formula'
|
||||
|
||||
class LibdbusmenuQt < Formula
|
||||
homepage 'http://people.canonical.com/~agateau/dbusmenu/index.html'
|
||||
url 'http://launchpad.net/libdbusmenu-qt/trunk/0.7.0/+download/libdbusmenu-qt-0.7.0.tar.bz2'
|
||||
md5 '512dc3213afcf0c561ac28000e85a80d'
|
||||
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
|
||||
system "cmake", ".", *std_cmake_args
|
||||
system "make install"
|
||||
mkdir 'macbuild' do
|
||||
args = std_cmake_args + ['..']
|
||||
system "cmake", *args
|
||||
system "make install"
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue