blob: edd0ce54240603fe537b2699602472cdbde6d122 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
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"
man1.install "doc/man/apg.1"
bin.install "apgbfm"
man1.install "doc/man/apgbfm.1"
end
end
|