homebrew-core/Formula/dfc.rb

16 lines
377 B
Ruby
Raw Normal View History

require 'formula'
class Dfc < Formula
homepage 'http://projects.gw-computing.net/projects/dfc'
2013-11-29 18:22:05 +00:00
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
2013-11-29 18:22:05 +00:00
system "cmake", ".", *std_cmake_args
system "make install"
end
end