diff options
| author | Daniel Salber | 2011-04-20 17:37:51 +0200 |
|---|---|---|
| committer | Adam Vandenberg | 2011-04-22 07:42:06 -0700 |
| commit | b94f92abe980c4b7b2e2e16885e0e7dad2bcd273 (patch) | |
| tree | 426dc36574e856a3ba6d647a08849f5589a69eb9 | |
| parent | 087bb5cdcc5afa1676a1f8f58c7d6a389b058443 (diff) | |
| download | homebrew-b94f92abe980c4b7b2e2e16885e0e7dad2bcd273.tar.bz2 | |
mp3check 0.8.4
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
| -rw-r--r-- | Library/Formula/mp3check.rb | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/Library/Formula/mp3check.rb b/Library/Formula/mp3check.rb new file mode 100644 index 000000000..ab2be273f --- /dev/null +++ b/Library/Formula/mp3check.rb @@ -0,0 +1,14 @@ +require 'formula' + +class Mp3check < Formula + url 'http://jo.ath.cx/soft/mp3check/mp3check-0.8.4.tgz' + homepage 'http://jo.ath.cx/soft/mp3check/' + md5 'dcaf1926463d5dfb81bd8a96cd3f9ceb' + + def install + ENV.deparallelize + system "./configure", "--disable-debug", "--disable-dependency-tracking", + "--prefix=#{prefix}" + system "make install" + end +end |
