aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/libgpg-error.rb
blob: 6f4427ef993b62c58c359e52a23e1391e323c2c4 (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.8.tar.bz2'
  homepage 'http://www.gnupg.org/'
  sha1 'f5cf677a7cd684645feaa9704d09eb5cd6d97e8a'

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