blob: 1ec9b2038fc100b16fa021a08b175e28d9a857a1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
  | 
require 'formula'
class Sl < Formula
  homepage 'https://github.com/mtoyoda/sl'
  url 'https://github.com/mtoyoda/sl/archive/5.01.tar.gz'
  sha256 'b16fcaa40cb195105e97f86280e3f37a9011d0c01d7e534946386d126408f6da'
  head 'https://github.com/mtoyoda/sl.git'
  fails_with :clang do
    build 318
  end
  def install
    system "make -e"
    bin.install "sl"
    man1.install "sl.1"
  end
end
  |