homebrew-core/Formula/slrn.rb

26 lines
751 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Slrn < Formula
url 'ftp://space.mit.edu/pub/davis/slrn/slrn-0.9.9p1.tar.gz'
2010-01-07 14:09:20 +00:00
homepage 'http://www.slrn.org/'
md5 '6cc8ac6baaff7cc2a8b78f7fbbe3187f'
version '0.9.9p1'
depends_on 's-lang'
def install
2010-12-11 20:38:45 +00:00
slrnpullcache = HOMEBREW_PREFIX+'var'+'spool'+'news'+'slrnpull'
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--with-ssl",
"--with-slrnpull=#{slrnpullcache}",
"--with-slang=#{HOMEBREW_PREFIX}"
system "make all slrnpull"
bin.mkpath
man1.mkpath
2010-12-11 20:38:45 +00:00
slrnpullcache.mkpath
2010-01-24 12:23:20 +00:00
ENV.j1 # yep, install is broken
system "make install"
end
end