aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/qimageblitz.rb
blob: cbb8adc1e4ccc6c5b3cbbd193d16535cbc78fa51 (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'
  depends_on 'qt'

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