CUE Sheet Parser Library

Libcue is intended to parse a so called cue sheet from a char string or a file pointer.
master
David Höppner 2010-01-08 11:21:22 +01:00
parent 7e8a284932
commit c6363b9174
1 changed files with 12 additions and 0 deletions

12
Formula/libcue.rb Normal file
View File

@ -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