c25f4ab762
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
14 lines
418 B
Ruby
14 lines
418 B
Ruby
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
|
|
system "make", "CC=#{ENV.cc}", "CFLAGS=#{ENV.cflags}"
|
|
bin.install "sl"
|
|
man1.install "sl.1"
|
|
end
|
|
end
|