diff options
| author | Misty De Meo | 2013-05-14 13:48:40 -0500 |
|---|---|---|
| committer | Misty De Meo | 2013-05-14 13:49:23 -0500 |
| commit | 528b8223c548bc9417a87a9fea06b3d6ed905b60 (patch) | |
| tree | a008d42f29ef21ab88ebb26fdae1a0ca73e55abc /Library/Formula | |
| parent | 58ee3d8de8f43e2b926572553952e2ea1330c8f9 (diff) | |
| download | homebrew-528b8223c548bc9417a87a9fea06b3d6ed905b60.tar.bz2 | |
id3v2: fix build
The makefile includes a prebuilt Linux binary that has to be cleaned
out before `make` will do anything.
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/id3v2.rb | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Library/Formula/id3v2.rb b/Library/Formula/id3v2.rb index 1ccc0cb41..f1150dd61 100644 --- a/Library/Formula/id3v2.rb +++ b/Library/Formula/id3v2.rb @@ -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}" |
