aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorDavid Höppner2009-09-19 11:50:52 +0200
committerDavid Höppner2009-09-19 11:50:52 +0200
commitd992d701a3b83d75f909c4672a2e2f71963ad144 (patch)
tree54c667981b8b46b8ed6b6471b15ca2e582d21a42 /Library/Formula
parent1266e7453be17c98fedea445cbbabc0ae88b78c0 (diff)
downloadhomebrew-d992d701a3b83d75f909c4672a2e2f71963ad144.tar.bz2
GNU Libidn formula
GNU Libidn is a fully documented implementation of the Stringprep, Punycode and IDNA specifications. Libidn's purpose is to encode and decode internationalized domain names.
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/gnu-libidn.rb12
1 files changed, 12 insertions, 0 deletions
diff --git a/Library/Formula/gnu-libidn.rb b/Library/Formula/gnu-libidn.rb
new file mode 100644
index 000000000..cf78fa186
--- /dev/null
+++ b/Library/Formula/gnu-libidn.rb
@@ -0,0 +1,12 @@
+require 'brewkit'
+
+class GnuLibidn <Formula
+ @url='http://ftp.gnu.org/gnu/libidn/libidn-1.9.tar.gz'
+ @homepage='http://www.gnu.org/software/libidn/'
+ @md5='f4d794639564256a367566302611224e'
+
+ def install
+ system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking", "--disable-csharp"
+ system "make install"
+ end
+end