homebrew-core/Formula/cuetools.rb

15 lines
441 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Cuetools < Formula
homepage 'http://developer.berlios.de/projects/cuetools/'
2013-01-27 22:04:05 +00:00
url 'http://download.berlios.de/cuetools/cuetools-1.3.1.tar.gz'
sha1 'ad760cdf76d6548471144302f88bf0a66f1d5ea2'
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--mandir=#{man}"
system "make install"
end
end