aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/audiofile.rb13
1 files changed, 13 insertions, 0 deletions
diff --git a/Library/Formula/audiofile.rb b/Library/Formula/audiofile.rb
new file mode 100644
index 000000000..5175c08b6
--- /dev/null
+++ b/Library/Formula/audiofile.rb
@@ -0,0 +1,13 @@
+require 'formula'
+
+class Audiofile <Formula
+ url 'http://ftp.gnome.org/pub/gnome/sources/audiofile/0.2/audiofile-0.2.7.tar.gz'
+ homepage 'http://www.68k.org/~michael/audiofile/'
+ md5 'a39be317a7b1971b408805dc5e371862'
+
+ def install
+ system "./configure", "--disable-debug", "--disable-dependency-tracking",
+ "--prefix=#{prefix}"
+ system "make install"
+ end
+end