05d09da8d3
Upgrade iso-codes to verion 3.35. Remove the PATH append for gettext bin. It's done automatically. Tested on Lion with cland and llvm from XCode-4.3.3. Closes Homebrew/homebrew#12878. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
15 lines
375 B
Ruby
15 lines
375 B
Ruby
require 'formula'
|
|
|
|
class IsoCodes < Formula
|
|
homepage 'http://pkg-isocodes.alioth.debian.org/'
|
|
url 'http://pkg-isocodes.alioth.debian.org/downloads/iso-codes-3.35.tar.bz2'
|
|
sha1 'ae9cfc7a17ff16ddaca9a925dab826789b571b61'
|
|
|
|
depends_on 'gettext' => :build
|
|
|
|
def install
|
|
system "./configure", "--prefix=#{prefix}"
|
|
system "make"
|
|
system "make install"
|
|
end
|
|
end
|