aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/iso-codes.rb
blob: 822097d5f521da9da2500db496ee92cf39a1237d (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.45.tar.xz'
  sha1 '15d7289efb3e4e115559a71f12681c5e396ffc52'

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

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