3225cb3841
I removed the gnu prefix from libidn and libunistring and I apologise because I know I made it look like you should add this prefix on previous commits. We add it when: 1. OS X has a non gnu equivalent pre-installed 2. The package is commonly called GNU foo, eg. GNU Go is not referred to as just 'Go' I removed the core suffix from clucene as if anyone ever wants more than just clucene teh additions should be added as variants to the clucene formula. Otherwise first class formula, 0xffea noticed all the extra things I usually do in cherry-picks.
12 lines
363 B
Ruby
12 lines
363 B
Ruby
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
|