aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/id3v2.rb
blob: de05583d240f232b5813c122fd31876f0b9ca593 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
require 'formula'

class Id3v2 < Formula
  homepage 'http://id3v2.sourceforge.net/'
  url 'https://downloads.sourceforge.net/project/id3v2/id3v2/0.1.12/id3v2-0.1.12.tar.gz'
  sha1 '8f42153b2f53098c221da2e8fe42170e727cd9ad'

  depends_on 'id3lib'

  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"
    bin.mkpath
    man1.mkpath
    system "make", "install", "PREFIX=#{prefix}"
  end
end