91a74e3a5c
Additional OpenSSL dependency, and bumps the links to SSL/TLS. Closes Homebrew/homebrew#34005. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
19 lines
449 B
Ruby
19 lines
449 B
Ruby
require "formula"
|
|
|
|
class Amap < Formula
|
|
homepage "https://www.thc.org/thc-amap/"
|
|
url "https://www.thc.org/releases/amap-5.4.tar.gz"
|
|
sha1 "79056f29a3b9e0a21062116aec3e966b1a46d7d3"
|
|
revision 1
|
|
|
|
depends_on "openssl"
|
|
|
|
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
|