4f9f0d0bf5
- All Debian software is now mirrored by ftp.us.debian.org. - LibFFI is mirrored by ftp.sourceware.org. - All kernel.org software is now mirrored by mirrorservice.org. Fixes Homebrew/homebrew#7478.
14 lines
378 B
Ruby
14 lines
378 B
Ruby
require 'formula'
|
|
|
|
class Sl < Formula
|
|
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'
|
|
homepage 'http://packages.debian.org/source/stable/sl'
|
|
md5 'd0d997b964bb3478f7f4968eee13c698'
|
|
|
|
def install
|
|
system "make"
|
|
bin.install "sl"
|
|
man1.install "sl.1"
|
|
end
|
|
end
|