Add formula for id3v2.

This commit is contained in:
Dan Walters 2009-11-16 19:10:23 -03:00 committed by Max Howell
parent d9f0201329
commit 0eb3086eb5

16
Formula/id3v2.rb Normal file
View file

@ -0,0 +1,16 @@
require 'formula'
class Id3v2 <Formula
url 'http://prdownloads.sourceforge.net/id3v2/id3v2-0.1.11.tar.gz'
homepage 'http://id3v2.sourceforge.net/'
md5 '68afc3827cf01501dfb22949f901f1d8'
depends_on 'id3lib'
def install
inreplace 'Makefile', 'c++', '$(CXX)'
FileUtils.mkdir_p "#{prefix}/bin"
FileUtils.mkdir_p "#{prefix}/man/man1"
system "make install PREFIX=#{prefix}"
end
end