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

class Attica <Formula
  url 'ftp://ftp.kde.org/pub/kde/stable/attica/attica-0.1.2.tar.bz2'
  homepage 'http://www.kde.org/'
  md5 '8b4207dbc0a826d422632bdb9c50d51a'

  depends_on 'cmake'

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