blob: 5e2f0a6de5953f97464437fc72bfde20c1d7a284 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
require 'formula'
class Bar < Formula
homepage 'http://www.theiling.de/projects/bar.html'
url 'http://www.theiling.de/downloads/bar-1.4-src.tar.bz2'
sha1 '00b55ca1d52ca6ed099937692697c2257833c73c'
def install
bin.install 'bar'
end
end
|