homebrew-core/Formula/dfc.rb
Adam Vandenberg b30fab7520 dfc 3.0.4
2013-11-29 10:22:30 -08:00

15 lines
377 B
Ruby

require 'formula'
class Dfc < Formula
homepage 'http://projects.gw-computing.net/projects/dfc'
url 'http://projects.gw-computing.net/attachments/download/79/dfc-3.0.4.tar.gz'
sha1 'e3b7fc7474f2ca36c1370a3dcbcd3d1020766f1a'
depends_on 'cmake' => :build
depends_on 'gettext'
def install
system "cmake", ".", *std_cmake_args
system "make install"
end
end