homebrew-core/Formula/iso-codes.rb

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