aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/qwt.rb
blob: af233d4b17f301bd98dba69c284994a7aa1205fe (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