105 lines
3.7 KiB
Ruby
105 lines
3.7 KiB
Ruby
class Lsh < Formula
|
|
desc "GNU implementation of the Secure Shell (SSH) protocols"
|
|
homepage "https://www.lysator.liu.se/~nisse/lsh/"
|
|
url "https://ftp.gnu.org/gnu/lsh/lsh-2.1.tar.gz"
|
|
mirror "https://ftpmirror.gnu.org/lsh/lsh-2.1.tar.gz"
|
|
sha256 "8bbf94b1aa77a02cac1a10350aac599b7aedda61881db16606debeef7ef212e3"
|
|
revision 1
|
|
|
|
bottle do
|
|
sha256 "ec3239a890387f33979336941411a1fb9c26696ecaf1f3edd519c89b3f63f848" => :sierra
|
|
sha256 "0fdcabfd979222e6156220f78077e404da9e43b4ce958c606b6b7bd52bb612d4" => :el_capitan
|
|
sha256 "7250d308a5d19b50d44ff99c1863aac5e8123ca0733bfadd2c57c702a294cef7" => :yosemite
|
|
sha256 "1ee5aa4a3fde1b0a5bbb30f31fed756b7de931f0ff39f559070d9eb02380e955" => :mavericks
|
|
end
|
|
|
|
depends_on "autoconf" => :build
|
|
depends_on "automake" => :build
|
|
depends_on :x11 => :optional # For libXau library
|
|
depends_on "nettle"
|
|
depends_on "gmp"
|
|
|
|
resource "liboop" do
|
|
url "https://mirrors.ocf.berkeley.edu/debian/pool/main/libo/liboop/liboop_1.0.orig.tar.gz"
|
|
mirror "https://mirrorservice.org/sites/ftp.debian.org/debian/pool/main/libo/liboop/liboop_1.0.orig.tar.gz"
|
|
sha256 "34d83c6e0f09ee15cb2bc3131e219747c3b612bb57cf7d25318ab90da9a2d97c"
|
|
end
|
|
|
|
# Start: Patches for nettle 3.1 support
|
|
# This patch set can be removed on release of lsh v2.2
|
|
patch do
|
|
url "https://git.lysator.liu.se/lsh/lsh/commit/0c197c83fa04bc99629520ba47c9f757e9ffd5a4.diff"
|
|
sha256 "7a4f763e004313c7e36186a843964d1e3a3e6d940b0dc3a7284fa49a5163e5f4"
|
|
end
|
|
|
|
patch do
|
|
url "https://git.lysator.liu.se/lsh/lsh/commit/b782b3abcf3b74d7b6bc0a89de988e1866e9a1a2.diff"
|
|
sha256 "cda00077a101b31437883e6001c1a705483112ce6fbf9916789564f0bb4b2d6f"
|
|
end
|
|
|
|
patch do
|
|
url "https://git.lysator.liu.se/lsh/lsh/commit/faf69a2890e5457b3bd4c2efe8d52ae0f00c2562.diff"
|
|
sha256 "63040afd415141b0f1673b9fb4757b92fa0c982c3582ad689c3124e4be38c73d"
|
|
end
|
|
|
|
patch do
|
|
url "https://git.lysator.liu.se/lsh/lsh/commit/dfe2b20109ffacef2b58fa530db820ecf34892b3.diff"
|
|
sha256 "9f3120d0026d348fcf93016f64e3e3433c1dc10dbb412feb3a191ac64d4c3c5b"
|
|
end
|
|
|
|
patch do
|
|
url "https://git.lysator.liu.se/lsh/lsh/commit/9849e9c2b77624f078c164f7cc15f51e586587b4.diff"
|
|
sha256 "5d73e11e0ed743d1996f7ea5a796fe79ae2072f2ccfe7a959b09dfdb5934bfdc"
|
|
end
|
|
|
|
patch do
|
|
url "https://git.lysator.liu.se/lsh/lsh/commit/2ecdd4f40399eda862ed57a5d6c6ed0bb0eeccb4.diff"
|
|
sha256 "1f079c6cab2984fbc25dc51138d1698729d80e0ac0fa4620ca43259ae62b255b"
|
|
end
|
|
|
|
patch do
|
|
url "https://git.lysator.liu.se/lsh/lsh/commit/6d5f1995f9c3439ca7f608eca680e3248df9790a.diff"
|
|
sha256 "6a187f6d10186b40c4a0d0f069403b43a3a7f526d05f4dc190dd1b9fd5f5d31b"
|
|
end
|
|
|
|
patch do
|
|
url "https://git.lysator.liu.se/lsh/lsh/commit/32fc8525ee4828e49859ae2822a2bdc0a5901398.diff"
|
|
sha256 "8c48fe31b0237ee7d20851f9b5566d8956d2d8e90238f207fb2587110c6b00df"
|
|
end
|
|
# END: Patches for nettle 3.1 support
|
|
|
|
def install
|
|
resource("liboop").stage do
|
|
system "./configure", "--prefix=#{libexec}/liboop", "--disable-dependency-tracking",
|
|
"--without-tcl", "--without-readline", "--without-glib"
|
|
system "make", "install"
|
|
end
|
|
|
|
args = %W[
|
|
--disable-dependency-tracking
|
|
--disable-silent-rules
|
|
--prefix=#{prefix}
|
|
]
|
|
|
|
if build.with? "x11"
|
|
args << "--with-x"
|
|
else
|
|
args << "--without-x"
|
|
end
|
|
|
|
# Find the sandboxed liboop.
|
|
ENV.append "LDFLAGS", "-L#{libexec}/liboop/lib"
|
|
# Compile fails without passing gnu89.
|
|
ENV.append_to_cflags "-I#{libexec}/liboop/include -std=gnu89"
|
|
|
|
system "autoreconf", "-i"
|
|
system "./configure", *args
|
|
system "make", "install"
|
|
# To avoid bumping into Homebrew/Dupes' OpenSSH:
|
|
rm "#{man8}/sftp-server.8"
|
|
end
|
|
|
|
test do
|
|
system "#{bin}/lsh", "--list-algorithms"
|
|
end
|
|
end
|