2010-02-09 15:20:23 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Apg <Formula
|
|
|
|
url 'http://www.adel.nursat.kz/apg/download/apg-2.2.3.tar.gz'
|
|
|
|
homepage 'http://www.adel.nursat.kz/apg/'
|
|
|
|
md5 '3b3fc4f11e90635519fe627c1137c9ac'
|
|
|
|
|
|
|
|
def install
|
2010-02-09 17:38:19 +00:00
|
|
|
inreplace "Makefile" do |s|
|
|
|
|
s.remove_make_var! ["CC", "FLAGS", "LIBS", "LIBM"]
|
|
|
|
end
|
2010-04-07 05:58:35 +00:00
|
|
|
|
2010-02-09 15:20:23 +00:00
|
|
|
system "make standalone"
|
2010-04-07 05:58:35 +00:00
|
|
|
|
2010-02-09 17:38:19 +00:00
|
|
|
# Install manually
|
2010-04-07 05:58:35 +00:00
|
|
|
bin.install ["apg", "apgbfm"]
|
|
|
|
man1.install ["doc/man/apg.1", "doc/man/apgbfm.1"]
|
2010-02-09 15:20:23 +00:00
|
|
|
end
|
|
|
|
end
|