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.50.tar.xz'
sha1 '250d22b2977a6f5a536753d85af85917474cf312'
depends_on 'xz' => :build
depends_on 'gettext' => :build
def install
system "./configure", "--prefix=#{prefix}"
system "make"
system "make install"
end
end