diff options
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/qwt.rb | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/Library/Formula/qwt.rb b/Library/Formula/qwt.rb new file mode 100644 index 000000000..ab49ff048 --- /dev/null +++ b/Library/Formula/qwt.rb @@ -0,0 +1,17 @@ +require 'formula' + +class Qwt <Formula + url 'http://downloads.sourceforge.net/project/qwt/qwt/5.1.2/qwt-5.1.2.tar.bz2' + homepage 'http://qwt.sourceforge.net/' + md5 'cb26a36f020d7c038e207b03b7d79bc5' + + depends_on 'qt' + + def install + ENV.j1 + inreplace 'qwtconfig.pri', ' INSTALLBASE = /usr/local/qwt-5.1.2', + " INSTALLBASE = #{prefix}" + system "qmake -config release" + system "make install" + end +end |
