blob: 860b25fe9fcd8adb81bf24328a86c5e66a6725ac (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
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
|