homebrew-core/Formula/libqglviewer.rb
2015-09-24 07:49:47 +01:00

77 lines
2.2 KiB
Ruby

class Libqglviewer < Formula
desc "C++ Qt library to create OpenGL 3D viewers"
homepage "http://www.libqglviewer.com/"
url "http://www.libqglviewer.com/src/libQGLViewer-2.6.1.tar.gz"
sha256 "9312c1a3d7fcf60ffc0bb1c8588b223034b06dab8f7e203f1a7e4ebc9b846c16"
head "https://github.com/GillesDebunne/libQGLViewer.git"
bottle do
cellar :any
sha256 "4e10d8f4fc3dd26fdecf2ea84eb7f9d4ce31de6ed0bf32827c5f2c2c3467e3f0" => :el_capitan
sha1 "874e8facfb89023da5b52fb380d0de0db83f0585" => :yosemite
sha1 "8cd9c48486c8d244e5b8cffc113a825fb1dd0aa5" => :mavericks
sha1 "f47da1b16cbbb6a5405e065a539daa356609f57d" => :mountain_lion
end
option :universal
depends_on "qt"
# This patches makes the package install QGLViewer.framework under
# #{lib}, where it will be picked by homebrew.
# Patch has been submitted to the developer, check with versions
# newer than 2.6.1 if this is still required.
patch :DATA
def install
args = ["PREFIX=#{prefix}"]
args << "CONFIG += x86 x86_64" if build.universal?
cd "QGLViewer" do
system "qmake", *args
system "make"
end
end
end
__END__
diff --git a/QGLViewer/QGLViewer.pro b/QGLViewer/QGLViewer.pro
index d805aa0..736a58f 100644
--- a/QGLViewer/QGLViewer.pro
+++ b/QGLViewer/QGLViewer.pro
@@ -240,26 +240,14 @@ macx|darwin-g++ {
FRAMEWORK_HEADERS.path = Headers
QMAKE_BUNDLE_DATA += FRAMEWORK_HEADERS
- DESTDIR = $${HOME_DIR}/Library/Frameworks/
-
- # For a Framework, 'include' and 'lib' do no make sense.
- # These and prefix will all define the DESTDIR, in that order in case several are defined
- !isEmpty( INCLUDE_DIR ) {
- DESTDIR = $${INCLUDE_DIR}
- }
-
- !isEmpty( LIB_DIR ) {
- DESTDIR = $${LIB_DIR}
- }
-
- !isEmpty( PREFIX ) {
- DESTDIR = $${PREFIX}
- }
-
- QMAKE_POST_LINK=cd $$DESTDIR/QGLViewer.framework/Headers && (test -L QGLViewer || ln -s . QGLViewer)
-
- #QMAKE_LFLAGS_SONAME = -Wl,-install_name,@executable_path/../Frameworks/
- #QMAKE_LFLAGS_SONAME = -Wl,-install_name,
+ !isEmpty( LIB_DIR ) {
+ DESTDIR = $${LIB_DIR}
+ }
+
+ # or to $${PREFIX}/lib otherwise
+ !isEmpty( PREFIX ) {
+ DESTDIR = $${PREFIX}/lib
+ }
# Framework already installed, with includes
INSTALLS -= include target