homebrew-core/Formula/libidn.rb

15 lines
401 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Libidn < Formula
2010-05-28 18:53:33 +00:00
url 'http://ftp.gnu.org/gnu/libidn/libidn-1.19.tar.gz'
2010-02-18 12:09:31 +00:00
homepage 'http://www.gnu.org/software/libidn/'
2010-05-28 18:53:33 +00:00
sha1 '2b6dcb500e8135a9444a250d7df76f545915f25f'
def install
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--disable-csharp"
system "make install"
end
end