aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorDavid Höppner2010-01-08 11:21:22 +0100
committerDavid Höppner2010-01-30 14:18:04 +0100
commit9b98bc81405f5c62c91027723fd5cbfa087d9c53 (patch)
treea60a83ceaa1bafb13505f38b4254122588b829eb /Library/Formula
parent29a059045c4d69aa01189cb63a9c13e94ff39d28 (diff)
downloadhomebrew-9b98bc81405f5c62c91027723fd5cbfa087d9c53.tar.bz2
CUE Sheet Parser Library
Libcue is intended to parse a so called cue sheet from a char string or a file pointer.
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/libcue.rb12
1 files changed, 12 insertions, 0 deletions
diff --git a/Library/Formula/libcue.rb b/Library/Formula/libcue.rb
new file mode 100644
index 000000000..900fe086d
--- /dev/null
+++ b/Library/Formula/libcue.rb
@@ -0,0 +1,12 @@
+require 'formula'
+
+class Libcue <Formula
+ url 'http://downloads.sourceforge.net/project/libcue/libcue/1.3.0/libcue-1.3.0.tar.bz2'
+ homepage 'http://sourceforge.net/projects/libcue/'
+ md5 'afd94427ff1e59f093a1b8b29aea2ecf'
+
+ def install
+ system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
+ system "make install"
+ end
+end