blob: 1aa92e94821fb8fb231dbf1cb2da32e1c95e398f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
require 'formula'
class Lxsplit < Formula
url 'http://downloads.sourceforge.net/lxsplit/lxsplit-0.2.4.tar.gz'
homepage 'http://lxsplit.sourceforge.net/'
md5 'ed21a08c167c08d4d81c820782947cb1'
def install
bin.mkpath
inreplace 'Makefile', '/usr/local/bin', bin
system "make"
system "make install"
end
end
|