2013-03-08 13:27:32 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Libsodium < Formula
|
|
|
|
homepage 'https://github.com/jedisct1/libsodium/'
|
2013-10-22 06:16:17 +00:00
|
|
|
url 'https://github.com/jedisct1/libsodium/releases/download/0.4.5/libsodium-0.4.5.tar.gz'
|
|
|
|
sha256 '7ad5202df53eeac0eb29b064ae5d05b65d82b2fc1c082899c9c6a09b0ee1ac32'
|
2013-04-28 20:06:16 +00:00
|
|
|
|
2013-09-22 01:47:16 +00:00
|
|
|
head do
|
|
|
|
url 'https://github.com/jedisct1/libsodium.git'
|
2013-09-06 14:15:22 +00:00
|
|
|
|
|
|
|
depends_on 'libtool' => :build
|
|
|
|
depends_on 'autoconf' => :build
|
|
|
|
depends_on 'automake' => :build
|
|
|
|
end
|
|
|
|
|
2013-09-22 01:47:16 +00:00
|
|
|
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-09-06 14:15:22 +00:00
|
|
|
system "./autogen.sh" if build.head?
|
|
|
|
|
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
|