95884bae22
Closes Homebrew/homebrew#42407. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
35 lines
1.1 KiB
Ruby
35 lines
1.1 KiB
Ruby
class Juise < Formula
|
|
desc "JUNOS user interface scripting environment"
|
|
homepage "https://github.com/Juniper/juise/wiki"
|
|
url "https://github.com/Juniper/juise/releases/download/0.6.1/juise-0.6.1.tar.gz"
|
|
sha256 "5985f2b19d017a52de2a77b0246afed86d2b9227acd277113468407db11cd146"
|
|
|
|
bottle do
|
|
sha1 "a8acedc9b48bc87a2daa4da9e81f17693d08fc32" => :mavericks
|
|
sha1 "eaf3ecb17214b7319a96409fe1180de8ca2134ac" => :mountain_lion
|
|
sha1 "e99ad8fe4f05ecd24773633cef6cd25109df936e" => :lion
|
|
end
|
|
|
|
head do
|
|
url "https://github.com/Juniper/juise.git"
|
|
|
|
depends_on "autoconf" => :build
|
|
depends_on "automake" => :build
|
|
end
|
|
|
|
depends_on "libtool" => :build
|
|
depends_on "libslax"
|
|
depends_on "libssh2"
|
|
depends_on "pcre"
|
|
depends_on "sqlite"
|
|
|
|
def install
|
|
system "sh ./bin/setup.sh" if build.head?
|
|
system "./configure", "--disable-dependency-tracking",
|
|
"--prefix=#{prefix}",
|
|
"--with-libssh2-prefix=#{HOMEBREW_PREFIX}",
|
|
"--with-sqlite3-prefix=#{Formula["sqlite"].opt_prefix}",
|
|
"--enable-libedit"
|
|
system "make", "install"
|
|
end
|
|
end
|