homebrew-core/Formula/iso-codes.rb
Brett Koonce d61718bc8f iso-codes 3.37
Closes Homebrew/homebrew#13934.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-08-03 19:51:15 -07: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.37.tar.bz2'
sha1 'b7239dc8e028f354e0cc67e72a9e7fe1ad45e1ee'
depends_on 'gettext' => :build
def install
system "./configure", "--prefix=#{prefix}"
system "make"
system "make install"
end
end