439545fea4
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
16 lines
403 B
Ruby
16 lines
403 B
Ruby
require 'formula'
|
|
|
|
class Amap < Formula
|
|
url 'http://www.thc.org/releases/amap-5.4.tar.gz'
|
|
homepage 'http://www.thc.org/thc-amap/'
|
|
md5 '2617c13b0738455c0e61c6e980b8decc'
|
|
|
|
def install
|
|
system "./configure", "--prefix=#{prefix}"
|
|
system "make"
|
|
|
|
# --prefix doesn't work as we want it to so install manually
|
|
bin.install ["amap", "amap6", "amapcrap"]
|
|
man1.install "amap.1"
|
|
end
|
|
end
|