blob: a49951d6a7495af89ecbec509ec1eefaebb40563 (
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'
md5 '0aa75af15c57b13aa7858092b79f3a61'
def install
system "make"
bin.install %W( mp3cat mp3log mp3log-conf mp3dirclean mp3http mp3stream-conf )
end
end
|