diff options
| author | Sean Graham | 2013-09-24 13:19:04 -0400 |
|---|---|---|
| committer | Adam Vandenberg | 2013-09-24 22:26:05 -0700 |
| commit | 8bc4f0aed5509531412a2795824fce107915c34e (patch) | |
| tree | 8a856bbd19e799a5bde49360e7f4187e4b67c60f /Library/Formula | |
| parent | e50fab616bb97ccdace2092f22630fc2250542e5 (diff) | |
| download | homebrew-8bc4f0aed5509531412a2795824fce107915c34e.tar.bz2 | |
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 #22798.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/brag.rb | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/Library/Formula/brag.rb b/Library/Formula/brag.rb new file mode 100644 index 000000000..a37ab16ba --- /dev/null +++ b/Library/Formula/brag.rb @@ -0,0 +1,18 @@ +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 |
