blob: 358c5bf82696ee5f46adf18e7fe07c4ee206ff98 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
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
inreplace "Makefile" do |s|
s.remove_make_var! ["CC", "FLAGS", "LIBS", "LIBM"]
end
system "make standalone"
# Install manually
bin.install ["apg", "apgbfm"]
man1.install ["doc/man/apg.1", "doc/man/apgbfm.1"]
end
end
|