blob: 365db672589e30ed8674e2df8bcec06d051db06f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
require 'formula'
class Id3tool < Formula
homepage 'http://nekohako.xware.cx/id3tool/'
url 'http://nekohako.xware.cx/id3tool/id3tool-1.2a.tar.gz'
md5 '061185562c0d0e6327406d9fc2f194b2'
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--mandir=#{man}"
system "make install"
end
end
|