homebrew-core/Formula/id3v2.rb

18 lines
542 B
Ruby
Raw Normal View History

2011-03-10 05:11:03 +00:00
class Id3v2 < Formula
desc "ID3v2 editing tool"
homepage "http://id3v2.sourceforge.net/"
url "https://downloads.sourceforge.net/project/id3v2/id3v2/0.1.12/id3v2-0.1.12.tar.gz"
sha256 "8105fad3189dbb0e4cb381862b4fa18744233c3bbe6def6f81ff64f5101722bf"
2009-11-16 22:10:23 +00:00
depends_on "id3lib"
2009-11-16 22:10:23 +00:00
def install
# tarball includes a prebuilt Linux binary, which will get installed
# by `make install` if `make clean` isn't run first
system "make", "clean"
2009-12-05 16:59:48 +00:00
bin.mkpath
man1.mkpath
system "make", "install", "PREFIX=#{prefix}"
2009-11-16 22:10:23 +00:00
end
end