homebrew-core/Formula/iso-codes.rb
Brett Koonce c99631b3bb iso-codes 3.44
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2013-07-16 19:41:49 -05:00

16 lines
402 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.44.tar.xz'
sha1 '628300675948a637ebd69b21673df73a0fbe1cf4'
depends_on 'xz' => :build
depends_on 'gettext' => :build
def install
system "./configure", "--prefix=#{prefix}"
system "make"
system "make install"
end
end