homebrew-core/Formula/brag.rb
Sean Graham 28fb6206a1 brag 1.4.3
Brag is a tool to collect and assemble multipart binary attachements from
newsgroups. The implementation is bulletproof; ideal to run as a cron job.
Supports uuencode, base64 and yenc encoded messages, and filtering based on
subject.

Closes Homebrew/homebrew#22798.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-09-24 22:26:05 -07:00

18 lines
383 B
Ruby

require 'formula'
class Brag < Formula
homepage 'http://brag.sourceforge.net/'
url 'http://downloads.sourceforge.net/project/brag/brag/1.4.3/brag-1.4.3.tar.gz'
sha1 'e79547ecb710153a13b54080be5d2b83944616d2'
depends_on 'uudeview'
def install
bin.install "brag"
man1.install "brag.1"
end
test do
system "#{bin}/brag", "-s", "news.bu.edu", "-L"
end
end