aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorJoe Auricchio2010-01-03 13:06:16 -0800
committerAdam Vandenberg2010-01-31 13:41:47 -0800
commit409aeeedf3971d474fe5740dd39b348a903b1a04 (patch)
tree4e838723ee359631fca47cc2620aae5b36b635d4 /Library
parent1fae0d5616fb29f351716b41b7f685a013b59315 (diff)
downloadhomebrew-409aeeedf3971d474fe5740dd39b348a903b1a04.tar.bz2
New formula for cuetools.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
-rwxr-xr-xLibrary/Formula/cuetools.rb15
1 files changed, 15 insertions, 0 deletions
diff --git a/Library/Formula/cuetools.rb b/Library/Formula/cuetools.rb
new file mode 100755
index 000000000..9298559cb
--- /dev/null
+++ b/Library/Formula/cuetools.rb
@@ -0,0 +1,15 @@
+require 'formula'
+
+class Cuetools <Formula
+ url 'http://download.berlios.de/cuetools/cuetools-1.3.1.tar.gz'
+ homepage 'http://developer.berlios.de/projects/cuetools/'
+ md5 '45575f7a1bdc6615599fa6cb49845cca'
+
+# depends_on 'cmake'
+
+ def install
+ system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking", "--mandir=#{prefix}/share/man"
+# system "cmake . #{std_cmake_parameters}"
+ system "make install"
+ end
+end