aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/id3lib.rb
blob: 42f5c9728da9f5e51380806172c64bd2a00f1d9c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
require 'brewkit'

class Id3lib <Formula
  @url='http://voxel.dl.sourceforge.net/project/id3lib/id3lib/3.8.3/id3lib-3.8.3.tar.gz'
  @homepage='http://id3lib.sourceforge.net/'
  @md5='19f27ddd2dda4b2d26a559a4f0f402a7'

  def install
    system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
    system "make install"
  end
end