2009-10-15 08:07:12 +00:00
|
|
|
require 'formula'
|
2009-09-19 09:50:52 +00:00
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Libidn < Formula
|
2010-02-18 12:09:31 +00:00
|
|
|
homepage 'http://www.gnu.org/software/libidn/'
|
2013-01-01 04:50:22 +00:00
|
|
|
url 'http://ftpmirror.gnu.org/libidn/libidn-1.26.tar.gz'
|
|
|
|
mirror 'http://ftp.gnu.org/gnu/libidn/libidn-1.26.tar.gz'
|
|
|
|
sha256 '0a2f4c71c80f8f389a99d5a26539a9be4a4ac42cd7f375aa41046660f63cc53c'
|
2009-09-19 09:50:52 +00:00
|
|
|
|
2011-03-30 23:33:40 +00:00
|
|
|
depends_on 'pkg-config' => :build
|
|
|
|
|
2012-11-25 17:24:24 +00:00
|
|
|
option :universal
|
|
|
|
|
2009-09-19 09:50:52 +00:00
|
|
|
def install
|
2012-11-25 17:24:24 +00:00
|
|
|
ENV.universal_binary if build.universal?
|
2010-08-15 22:58:28 +00:00
|
|
|
system "./configure", "--disable-dependency-tracking",
|
|
|
|
"--prefix=#{prefix}",
|
|
|
|
"--disable-csharp"
|
2009-09-19 09:50:52 +00:00
|
|
|
system "make install"
|
|
|
|
end
|
2011-09-02 22:57:44 +00:00
|
|
|
|
|
|
|
def test
|
2012-05-15 21:36:45 +00:00
|
|
|
system "#{bin}/idn", "--version"
|
2011-09-02 22:57:44 +00:00
|
|
|
end
|
2009-09-19 09:50:52 +00:00
|
|
|
end
|