blob: dccace0592b1c4e96046434fdaa8b5d8a3865ec8 (
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.2.0.tar.bz2'
  homepage 'http://www.kde.org/'
  md5 'df3dcea0229cfa31539bdd427976e15b'
  depends_on 'cmake' => :build
  def install
    system "cmake . #{std_cmake_parameters}"
    system "make install"
  end
end
  |