blob: 234f4bc91181f8a9fe1260a6765e9d3f91dd9784 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
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'
option :universal
def install
ENV.universal_binary if build.universal?
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make check"
system "make install"
end
end
|