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

class CutyCapt < Formula
  homepage 'http://cutycapt.sourceforge.net/'
  url 'http://ftp.de.debian.org/debian/pool/main/c/cutycapt/cutycapt_0.0~svn6.orig.tar.gz'
  version '0.0.6'
  sha1 '9c35cff498e8dfc351cbfeb884ad69f6ba29ae2e'

  depends_on 'qt'

  def install
    system "qmake CONFIG-=app_bundle"
    system "make"
    bin.install "CutyCapt"
  end
end