blob: a37ab16ba02c433896c2e696f1a23d61b64948f5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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
|