aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/qimageblitz.rb
blob: 3b88a861b405b0b6f360c02c01acc26bdf6d86c4 (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