blob: 12e7b487e26b4a743011c0b6151561f210074a6d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
require 'formula'
class Mp3cat < Formula
homepage 'http://tomclegg.net/mp3cat'
url 'http://tomclegg.net/software/mp3cat-0.4.tar.gz'
sha1 '442d2b2b546fec4535c2aa892a8fc61db21eb917'
def install
system "make"
bin.install %W( mp3cat mp3log mp3log-conf mp3dirclean mp3http mp3stream-conf )
end
end
|