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).
This commit is contained in:
Alexis Hildebrandt 2009-12-27 21:35:00 +01:00 committed by Max Howell
parent 303e40def5
commit 05dddd3dfc

24
Formula/slrn.rb Normal file
View file

@ -0,0 +1,24 @@
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