Skip to content

Commit

Permalink
id3v2: fix build
Browse files Browse the repository at this point in the history
The makefile includes a prebuilt Linux binary that has to be cleaned
out before `make` will do anything.
  • Loading branch information
mistydemeo committed May 14, 2013
1 parent 79651ca commit 6c5a4f6
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Formula/id3v2.rb
Expand Up @@ -8,6 +8,9 @@ class Id3v2 < Formula
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}"
Expand Down

0 comments on commit 6c5a4f6

Please sign in to comment.