homebrew-core/Formula/slrn.rb
Alexis Hildebrandt 05dddd3dfc Slrn 0.9.9p1
A newsreader, i.e. a program that accesses a newsserver to read messages
from the Internet News service (also known as 'Usenet').

It runs in console mode on various Unix-like systems (including Linux),
32-bit Windows, OS/2, BeOS and VMS.

Beside the usual features of a newsreader slrn supports scoring rules to
highlight, sort or kill articles based on information from their header.

It is highly customizable, allows free key-bindings and can easily be
extended using the sophisticated S-Lang macro language. Offline reading
is possible by using either slrnpull (shipped with slrn) or a local
newsserver (like leafnode or INN).
2010-01-23 12:21:14 +00:00

24 lines
529 B
Ruby

require 'formula'
class Slrn <Formula
url 'ftp://space.mit.edu/pub/davis/slrn/slrn-0.9.9p1.tar.gz'
homepage 'ihttp://www.slrn.org/'
md5 '6cc8ac6baaff7cc2a8b78f7fbbe3187f'
version '0.9.9p1'
depends_on 's-lang'
def install
configure_args = [
"--prefix=#{prefix}",
"--disable-debug",
"--disable-dependency-tracking",
"--with-ssl",
]
system "./configure", *configure_args
system "make all slrnpull"
bin.mkpath()
man1.mkpath()
system "make install"
end
end