2013-03-08 13:27:32 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Libsodium < Formula
|
|
|
|
homepage 'https://github.com/jedisct1/libsodium/'
|
2013-04-28 20:06:16 +00:00
|
|
|
url 'http://download.dnscrypt.org/libsodium/releases/libsodium-0.4.1.tar.gz'
|
|
|
|
sha256 '65756c7832950401cc0e6ee0e99b165974244e749f40f33d465f56447bae8ce3'
|
|
|
|
|
|
|
|
option :universal
|
2013-03-08 13:27:32 +00:00
|
|
|
|
|
|
|
def install
|
2013-04-28 20:06:16 +00:00
|
|
|
ENV.universal_binary if build.universal?
|
2013-03-08 13:27:32 +00:00
|
|
|
system "./configure", "--disable-debug", "--disable-dependency-tracking",
|
|
|
|
"--prefix=#{prefix}"
|
|
|
|
system "make check"
|
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|