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

class IsoCodes < Formula
  homepage 'http://pkg-isocodes.alioth.debian.org/'
  url 'http://pkg-isocodes.alioth.debian.org/downloads/iso-codes-3.49.tar.xz'
  sha1 '2a9836429423343ec9631b30fdb177b733bdef7c'

  depends_on 'xz' => :build
  depends_on 'gettext' => :build

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