blob: 08cf0914e317bca8dda966fee37b4837aa9fb329 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
  | 
require 'formula'
class Gnunet < Formula
  homepage 'https://gnunet.org/'
  url 'http://ftpmirror.gnu.org/gnunet/gnunet-0.9.3.tar.gz'
  mirror 'http://ftp.gnu.org/gnu/gnunet/gnunet-0.9.3.tar.gz'
  sha256 '50586ba4f82c4890f191bd79b1bb6504a5e9b9f90371f0c011879f25f9cef15e'
  depends_on 'libgcrypt'
  depends_on 'libextractor'
  depends_on 'curl' if MacOS.version < :lion # needs >= v7.20.1
  def install
    system "./configure", "--disable-debug",
                          "--disable-dependency-tracking",
                          "--prefix=#{prefix}"
    system "make install"
  end
  def test
    system "#{bin}/gnunet-search", "--version"
  end
end
  |