88779ade49
Closes Homebrew/homebrew#14653.
13 lines
270 B
Ruby
13 lines
270 B
Ruby
require 'formula'
|
|
|
|
class Bchunk < Formula
|
|
url 'http://he.fi/bchunk/bchunk-1.2.0.tar.gz'
|
|
homepage 'http://he.fi/bchunk/'
|
|
sha1 'a328e4665eb5e51df63d8d27d1d75ecc74bdef9e'
|
|
|
|
def install
|
|
system "make"
|
|
bin.install 'bchunk'
|
|
man1.install 'bchunk.1'
|
|
end
|
|
end
|