homebrew-core/Formula/iso-codes.rb

16 lines
374 B
Ruby
Raw Normal View History

2014-06-23 01:35:27 +00:00
require "formula"
class IsoCodes < Formula
2014-06-23 01:35:27 +00:00
homepage "http://pkg-isocodes.alioth.debian.org/"
url "http://pkg-isocodes.alioth.debian.org/downloads/iso-codes-3.54.tar.xz"
sha1 "8b07323ca36f976433e516709d86f67516628e3b"
2014-06-23 01:35:27 +00:00
depends_on "gettext" => :build
def install
system "./configure", "--prefix=#{prefix}"
system "make"
system "make install"
end
end