blob: 8aeff2a070a91c5ff785ccc9aa0466737aab5abe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
require 'formula'
class Dxflib < Formula
homepage 'http://www.ribbonsoft.com/dxflib.html'
url 'ftp://anonymous:anonymous@ribbonsoft.com/archives/dxflib/dxflib-2.2.0.0-1.src.tar.gz'
version '2.2.0.0-1'
md5 '0eb6bef3b3a702012eeb4e99ef1aa3f1'
def install
system "./configure", "--prefix=#{prefix}"
system "make install"
end
end
|