903cb56454
Closes Homebrew/homebrew#32477. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
34 lines
983 B
Ruby
34 lines
983 B
Ruby
require "formula"
|
|
|
|
class Libsodium < Formula
|
|
homepage "https://github.com/jedisct1/libsodium/"
|
|
url "https://github.com/jedisct1/libsodium/releases/download/0.7.1/libsodium-0.7.1.tar.gz"
|
|
sha256 "ef46bbb5bac263ef6d3fc00ccc11d4690aea83643412919fe15369b9870280a7"
|
|
|
|
bottle do
|
|
cellar :any
|
|
sha1 "ebe8db5c6f99bfa295c2b7ee591f6c3f77de6aa2" => :mavericks
|
|
sha1 "1b068574f2c6fd56b35a2e7d30011d697a25d927" => :mountain_lion
|
|
sha1 "fd07ccba946fa7d7fbe287c94990a773041db5ff" => :lion
|
|
end
|
|
|
|
head do
|
|
url "https://github.com/jedisct1/libsodium.git"
|
|
|
|
depends_on "libtool" => :build
|
|
depends_on "autoconf" => :build
|
|
depends_on "automake" => :build
|
|
end
|
|
|
|
option :universal
|
|
|
|
def install
|
|
ENV.universal_binary if build.universal?
|
|
system "./autogen.sh" if build.head?
|
|
|
|
system "./configure", "--disable-debug", "--disable-dependency-tracking",
|
|
"--prefix=#{prefix}"
|
|
system "make check"
|
|
system "make install"
|
|
end
|
|
end
|