blob: 748dad718071f2397fca666842e31ea166aea0f1 (
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.02.tar.gz"
  sha256 "1e5996757f879c81f202a18ad8e982195cf51c41727d3fea4af01fdcbbb5563a"
  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
 |