aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/nkf.rb
blob: a2d3008e309e1c746f8a262f4f453fcfde274ade (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
require 'formula'

class Nkf < Formula

  url 'http://heian.s3.amazonaws.com/nkf-2.1.0.tar.gz'
  homepage 'http://sourceforge.jp/projects/nkf/'
  md5 '1d3fd56ccd2f60768e59dde44ccf095c'

  def install
    ENV['prefix'] = prefix
    system 'make'
    system 'make install'
  end

  def patches
    # Makefile patch
    [ 'http://heian.s3.amazonaws.com/nkf-2.1.0.patch' ]
  end
end