blob: 93251dfb5b18162cff3bfc3f55cf80d101e199dc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
require 'formula'
class Libidn <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
|