7bd947eb0b
* Use new "url" features * Use keg_only DSL * Use "skip_clean :all" DSL * Whitespace and style cleanups * Make bash invocations less silly * Use new man2-man8 helpers * Remove "FileUtils." since it is included in Formula * Use real names for deps instead of aliases * ENV.x11 now updates path, so remove that from individual brews
14 lines
431 B
Ruby
Executable file
14 lines
431 B
Ruby
Executable file
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'
|
|
|
|
def install
|
|
system "./configure", "--disable-debug", "--disable-dependency-tracking",
|
|
"--prefix=#{prefix}",
|
|
"--mandir=#{man}"
|
|
system "make install"
|
|
end
|
|
end
|