11a9f21040
Allows use of libsodium trunk. With thanks to @dsheets Closes Homebrew/homebrew#22355. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
27 lines
743 B
Ruby
27 lines
743 B
Ruby
require 'formula'
|
|
|
|
class Libsodium < Formula
|
|
homepage 'https://github.com/jedisct1/libsodium/'
|
|
url 'http://download.dnscrypt.org/libsodium/releases/libsodium-0.4.2.tar.gz'
|
|
sha256 '1a7901cdd127471724e854a8eb478247dc0ca67be549345c75fc6f2d4e05ed39'
|
|
|
|
head 'https://github.com/jedisct1/libsodium.git'
|
|
|
|
option :universal
|
|
|
|
if build.head?
|
|
depends_on 'libtool' => :build
|
|
depends_on 'autoconf' => :build
|
|
depends_on 'automake' => :build
|
|
end
|
|
|
|
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
|