blob: 38b527ab2ce2daa7033aff37ee0a00ca9bb589f3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
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 patches
# Makefile patch
'http://heian.s3.amazonaws.com/nkf-2.1.0.patch'
end
def install
ENV['prefix'] = prefix
system 'make'
system 'make install'
end
end
|