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

class Qimageblitz <Formula
  url 'svn://anonsvn.kde.org/home/kde/tags/qimageblitz/0.0.6'
  version '0.0.6'
  homepage 'http://www.kde.org'

  depends_on 'cmake' => :build
  depends_on 'qt'

  def install
    system "cmake . #{std_cmake_parameters}"
    system "make install"
  end
end