aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorMike McQuaid2013-09-12 14:47:46 +0100
committerMike McQuaid2013-09-12 14:48:05 +0100
commitb46f0c09d1eff827895f974f9d455fd4053e0f51 (patch)
treee57a251e82602be25750ffe2e1c5a4d731ebb436 /Library/Formula
parentd0f48601e3424d2bedd6158c6acd019bbee2fb90 (diff)
downloadhomebrew-b46f0c09d1eff827895f974f9d455fd4053e0f51.tar.bz2
qt-mobility: move to homebrew-headonly tap.
https://github.com/Homebrew/homebrew-headonly Relies on unreleased Git versions to build for Lion or above. Closes #22285.
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/qt-mobility.rb21
1 files changed, 0 insertions, 21 deletions
diff --git a/Library/Formula/qt-mobility.rb b/Library/Formula/qt-mobility.rb
deleted file mode 100644
index 5b9d09995..000000000
--- a/Library/Formula/qt-mobility.rb
+++ /dev/null
@@ -1,21 +0,0 @@
-require 'formula'
-
-class QtMobility < Formula
- homepage 'http://qt.nokia.com/products/qt-addons/mobility'
- url 'git://gitorious.org/qt-mobility/qt-mobility.git', :revision => '6a75140'
- version '1.2.0-6a75140'
-
- depends_on 'qt'
-
- def install
- system "./configure", "-release", "-prefix", prefix, "-qmake-exec", "#{HOMEBREW_PREFIX}/bin/qmake"
- system "make"
- ENV.j1
- 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