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