aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorTom Lieber2009-11-17 14:41:05 -0800
committerMax Howell2009-12-05 17:49:08 +0000
commitb1af41ef457ca5a025d0707f84fa42a0d2d444c4 (patch)
tree6ccdf8efb251b777f7c5ac6a996dd04e6dc6416c /Library
parent6ae3b89dc480dd8ccdaaa39af76d83339c503fc3 (diff)
downloadhomebrew-b1af41ef457ca5a025d0707f84fa42a0d2d444c4.tar.bz2
added libsndfile package
Signed-off-by: Max Howell <max@methylblue.com> Added md5 and removed cmake cruft.
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/libsndfile.rb12
1 files changed, 12 insertions, 0 deletions
diff --git a/Library/Formula/libsndfile.rb b/Library/Formula/libsndfile.rb
new file mode 100644
index 000000000..8f0d47ab1
--- /dev/null
+++ b/Library/Formula/libsndfile.rb
@@ -0,0 +1,12 @@
+require 'formula'
+
+class Libsndfile <Formula
+ url 'http://www.mega-nerd.com/libsndfile/libsndfile-1.0.20.tar.gz'
+ homepage 'http://www.mega-nerd.com/libsndfile/'
+ md5 'e0553e12c7a467af44693e95e2eac668'
+
+ def install
+ system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
+ system "make install"
+ end
+end