homebrew-core/Formula/attica.rb

15 lines
313 B
Ruby
Raw Normal View History

2010-01-31 15:22:29 +00:00
require 'formula'
2011-03-10 05:11:03 +00:00
class Attica < Formula
2010-10-16 20:54:00 +00:00
url 'ftp://ftp.kde.org/pub/kde/stable/attica/attica-0.2.0.tar.bz2'
2010-01-31 15:22:29 +00:00
homepage 'http://www.kde.org/'
2010-10-16 20:54:00 +00:00
md5 'df3dcea0229cfa31539bdd427976e15b'
2010-01-31 15:22:29 +00:00
depends_on 'cmake' => :build
2010-01-31 15:22:29 +00:00
def install
system "cmake . #{std_cmake_parameters}"
system "make install"
end
end