blob: 165b0e09bf1556628188967e8b50e58f8401c976 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
  | 
require 'formula'
class Sl < Formula
  homepage 'http://packages.debian.org/source/stable/sl'
  url 'http://mirrors.kernel.org/debian/pool/main/s/sl/sl_3.03.orig.tar.gz'
  mirror 'http://ftp.us.debian.org/debian/pool/main/s/sl/sl_3.03.orig.tar.gz'
  md5 'd0d997b964bb3478f7f4968eee13c698'
  def install
    ENV.llvm if MacOS.clang_version.to_f <= 3.1
    system "make", "CC=#{ENV.cc}", "CFLAGS=#{ENV.cflags}"
    bin.install "sl"
    man1.install "sl.1"
  end
end
  |