blob: f8c269cc7d829a64acb70954765ff75fb01c52ab (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
 | require 'formula'
class Apg < Formula
  homepage 'http://www.adel.nursat.kz/apg/'
  url 'http://www.adel.nursat.kz/apg/download/apg-2.2.3.tar.gz'
  md5 '3b3fc4f11e90635519fe627c1137c9ac'
  def install
    system "make", "standalone",
                   "CC=#{ENV.cc}",
                   "FLAGS=#{ENV.cflags}",
                   "LIBS=", "LIBM="
    bin.install 'apg', 'apgbfm'
    man1.install 'doc/man/apg.1', 'doc/man/apgbfm.1'
  end
end
 |