homebrew-core/Formula/bchunk.rb
Olivier ROUX 6656f2f05e bchunk formula
binchunker converts a CD image in a ".bin / .cue" format (sometimes ".raw /
.cue") to a set of .iso and .cdr tracks.
2009-09-29 15:46:34 +01:00

15 lines
282 B
Ruby

require 'brewkit'
class Bchunk <Formula
url 'http://he.fi/bchunk/bchunk-1.2.0.tar.gz'
homepage 'http://he.fi/bchunk/'
md5 '6a613da3f34f9a303f202d2e9731d231'
# depends_on 'cmake'
def install
system "make"
bin.install 'bchunk'
man1.install 'bchunk.1'
end
end