48 lines
1.4 KiB
Ruby
48 lines
1.4 KiB
Ruby
class Libsodium < Formula
|
|
desc "NaCl networking and cryptography library"
|
|
homepage "https://github.com/jedisct1/libsodium/"
|
|
url "https://github.com/jedisct1/libsodium/releases/download/1.0.3/libsodium-1.0.3.tar.gz"
|
|
sha256 "cbcfc63cc90c05d18a20f229a62c7e7054a73731d0aa858c0517152c549b1288"
|
|
|
|
bottle do
|
|
cellar :any
|
|
sha256 "7f7859d1c5c40ec44e527552d52f33d6b05e2136f20b4476b05c6fe723dde6a7" => :yosemite
|
|
sha256 "27b62f10fbae4bd2db62441f63516f6bfce341a1681cac6e385394ec31c60bbe" => :mavericks
|
|
sha256 "6796e57b7cdbc04df9da2e35cc1c16fb07db68fe7fd664773d050bcb53b33143" => :mountain_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
|
|
|
|
test do
|
|
(testpath/"test.c").write <<-EOS.undent
|
|
#include <assert.h>
|
|
#include <sodium.h>
|
|
|
|
int main()
|
|
{
|
|
assert(sodium_init() != -1);
|
|
return 0;
|
|
}
|
|
EOS
|
|
system ENV.cc, "test.c", "-lsodium", "-o", "test"
|
|
system "./test"
|
|
end
|
|
end
|