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

class Libidn < Formula
  url 'http://ftp.gnu.org/gnu/libidn/libidn-1.19.tar.gz'
  homepage 'http://www.gnu.org/software/libidn/'
  sha1 '2b6dcb500e8135a9444a250d7df76f545915f25f'

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