homebrew-core/Formula/libidn.rb

15 lines
391 B
Ruby
Raw Normal View History

require 'formula'
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'
2010-03-17 16:39:00 +00:00
depends_on 'gettext'
def install
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking", "--disable-csharp"
system "make install"
end
end