blob: 49bbfd53b1fb95e1dded6589bc8017f35c2defcf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
  | 
require 'formula'
class Avce00 < Formula
  homepage 'http://avce00.maptools.org/avce00/index.html'
  url 'http://avce00.maptools.org/dl/avce00-2.0.0.tar.gz'
  sha1 '2948d9b1cfb6e80faf2e9b90c86fd224617efd75'
  def install
    system "make", "CC=#{ENV.cc}"
    bin.install "avcimport",  "avcexport", "avcdelete", "avctest"
  end
end
  |