aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/mp3check.rb14
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