blob: ce27aa6ce71dba70141de15bbeb8e0688e87e404 (
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'
sha1 '7bdbc931ef8477717186dc3ab3a2d3c25012b4ca'
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
|