blob: f2c2d41a54f5d44eb3a94625baf49c9ddfe3c145 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
require 'formula'
class Dfc < Formula
homepage 'http://projects.gw-computing.net/projects/dfc'
url 'http://projects.gw-computing.net/attachments/download/42/dfc-2.5.0.tar.gz'
md5 'e9c5e862858ab2cd4a7b2270c26722ef'
def install
system "make", "PREFIX=#{prefix}", "MANDIR=#{man}", "install"
end
end
|