homebrew-core/Formula/iso-codes.rb
nibbles 2bits 05d09da8d3 iso-codes 3.35
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>
2012-06-16 10:46:38 -05:00

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