aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/wavpack.rb12
1 files changed, 12 insertions, 0 deletions
diff --git a/Library/Formula/wavpack.rb b/Library/Formula/wavpack.rb
new file mode 100644
index 000000000..126c9a885
--- /dev/null
+++ b/Library/Formula/wavpack.rb
@@ -0,0 +1,12 @@
+require 'formula'
+
+class Wavpack <Formula
+ url 'http://www.wavpack.com/wavpack-4.60.1.tar.bz2'
+ homepage 'http://www.wavpack.com/'
+ md5 '7bb1528f910e4d0003426c02db856063'
+
+ def install
+ system "./configure", "--disable-debug", "--disable-dependency-tracking", "--prefix=#{prefix}"
+ system "make install"
+ end
+end