homebrew-core/Formula/qt-mobility.rb
Thomas Perl 459101752d qt-mobility: Build from Git to avoid build error (Issue Homebrew/homebrew#9672)
Fixes:

    invalid conversion from ‘void (* const)(QObject*, QMetaObject::Call,
    int, void**)’ to ‘int (*)(QMetaObject::Call, int, void**)’

Also fixes (via a patch) a build error on case sensitive filesystems.

This uses a fixed revision in Git, because the latest stable release
(1.2.0) fails to compile on Lion.

Closes Homebrew/homebrew#12220.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-09-02 13:52:08 -07:00

24 lines
719 B
Ruby

require 'formula'
class QtMobility < Formula
homepage 'http://qt.nokia.com/products/qt-addons/mobility'
url 'git://gitorious.org/qt-mobility/qt-mobility.git', :revision => '1ccbeab'
version '1.2.0-1ccbeab'
depends_on 'qt'
def patches
# Fixes build on case sensitive filesystems
'http://lists.qt.nokia.com/pipermail/qt-mobility-feedback/attachments/20120220/be90dd45/attachment.obj'
end
def install
system "./configure", "-release", "-prefix", prefix, "-qmake-exec", "#{HOMEBREW_PREFIX}/bin/qmake"
system "make install"
# Move all .apps out of the "bin/" and into the prefix (like qt formula)
Pathname.glob(bin + '*.app').each do |path|
mv path, prefix
end
end
end