aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/iso-codes.rb
blob: dc548e40cf8e45e90cd4e2b2a965dce5b8d0c41e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
require 'formula'

class IsoCodes < Formula
  homepage 'http://pkg-isocodes.alioth.debian.org/'
  url 'http://pkg-isocodes.alioth.debian.org/downloads/iso-codes-3.37.tar.bz2'
  sha1 'b7239dc8e028f354e0cc67e72a9e7fe1ad45e1ee'

  depends_on 'gettext' => :build

  def install
    system "./configure", "--prefix=#{prefix}"
    system "make"
    system "make install"
  end
end