homebrew-core/Formula/iso-codes.rb
Brett Koonce 8ffad7c8bc iso-codes 3.49
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-12-18 21:48:55 -08: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.49.tar.xz'
sha1 '2a9836429423343ec9631b30fdb177b733bdef7c'
depends_on 'xz' => :build
depends_on 'gettext' => :build
def install
system "./configure", "--prefix=#{prefix}"
system "make"
system "make install"
end
end