blob: a6a524459f2cd3959daad0f0f659f69511c911dc (
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.47.tar.xz'
sha1 'fb09dd07ff2bac215e0be8850868b03403346e79'
depends_on 'xz' => :build
depends_on 'gettext' => :build
def install
system "./configure", "--prefix=#{prefix}"
system "make"
system "make install"
end
end
|