blob: 917fb0b72a5a13d85a0559d0643070399fd87da0 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
 | require 'formula'
class Uim < Formula
  homepage 'http://code.google.com/p/uim/'
  url 'https://uim.googlecode.com/files/uim-1.6.0.tar.bz2'
  sha1 'd27f2ca8136da0702c82f0522911d06b2b8f8ea7'
  depends_on 'pkg-config' => :build
  depends_on 'gettext'
  def install
    system "./configure", "--disable-debug", "--disable-dependency-tracking",
                          "--prefix=#{prefix}"
    system "make install"
  end
end
 |