diff options
| author | Max Howell | 2009-08-06 19:41:08 +0100 |
|---|---|---|
| committer | Max Howell | 2009-08-06 20:25:59 +0100 |
| commit | 7fa88ff6ff87c16f43fccf908e866f94ce6e92f4 (patch) | |
| tree | c7c2064049c744bed7dbc61861713f13c067aa86 /Library | |
| parent | 1b89593c7226f2550946c3dfc84dcf8883ea5c4f (diff) | |
| download | homebrew-7fa88ff6ff87c16f43fccf908e866f94ce6e92f4.tar.bz2 | |
Install taglib-extras with Taglib
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/taglib.rb | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Library/Formula/taglib.rb b/Library/Formula/taglib.rb index 2811decec..06f022255 100644 --- a/Library/Formula/taglib.rb +++ b/Library/Formula/taglib.rb @@ -1,5 +1,10 @@ require 'brewkit' +class TaglibExtras <UnidentifiedFormula + @url='http://kollide.net/~jefferai/taglib-extras-0.1.6.tar.gz' + @md5='706a82fe4c25606f731faf4c14b5edb0' +end + class Taglib <Formula @url='http://developer.kde.org/~wheeler/files/src/taglib-1.5.tar.gz' @md5='7b557dde7425c6deb7bbedd65b4f2717' @@ -8,5 +13,10 @@ class Taglib <Formula def install system "./configure --disable-debug --prefix='#{prefix}'" system "make install" + + TaglibExtras.new.brew do |f| + system "cmake . #{std_cmake_parameters}" + system "make install" + end unless ARGV.include? '--no-extras' end end
\ No newline at end of file |
