aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/libgpg-error.rb
blob: bf68d463a17d4b19785e539f144d5ef88f5d8a60 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
require 'formula'

class LibgpgError <Formula
  url 'ftp://ftp.gnupg.org/gcrypt/libgpg-error/libgpg-error-1.9.tar.bz2'
  homepage 'http://www.gnupg.org/'
  sha1 '6836579e42320b057a2372bbcd0325130fe2561e'

  def install
    ENV.j1
    system "./configure", "--disable-dependency-tracking",
                          "--prefix=#{prefix}"
    system "make install"
  end
end