homebrew-core/Formula/iso-codes.rb

17 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