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