blob: 4b87544fdf070097969c3fc28c2b52e48606c1dc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
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 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
|