aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/uim.rb
blob: cbd968ca78738cff8147bf32e1bd0f9337f549bb (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 'http://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