aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/iso-codes.rb
blob: 232f7a8554281b6e61073ad93b0428fde2d03283 (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.35.tar.bz2'
  sha1 'ae9cfc7a17ff16ddaca9a925dab826789b571b61'

  depends_on 'gettext' => :build

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