aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/qwt.rb
blob: 6212ef2941b070a60a253b0aca5ec01025c0ed8f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
require 'formula'

class Qwt <Formula
  url 'http://sourceforge.net/projects/qwt/files/qwt/5.2.1/qwt-5.2.1.tar.bz2'
  homepage 'http://qwt.sourceforge.net/'
  md5 '4a595b8db0ec3856b117836c1d60cb27'

  depends_on 'qt'

  def install
    inreplace 'qwtconfig.pri' do |s|
      s.gsub! /\/usr\/local\/qwt-5\.2\.1/, prefix
    end

    system "qmake -config release"
    system "make install"
  end
end