homebrew-core/Formula/vgmstream.rb
Adam Vandenberg da3fdbd0cf Use "cd" instead of "Dir.chdir"
* And "mkdir" isntead of "Dir.mkdir"
* And "Dir[]" instead of "Dir.glob"
* Also style fixes and nitpicks
2012-02-24 21:35:50 -08:00

19 lines
437 B
Ruby

require 'formula'
class Vgmstream < Formula
homepage 'http://hcs64.com/vgmstream.html'
url 'https://vgmstream.svn.sourceforge.net/svnroot/vgmstream',
:using => UnsafeSubversionDownloadStrategy, :revision => 970
version 'r970'
depends_on 'mpg123'
depends_on 'libvorbis'
def install
cd "test" do
system "make"
bin.install "test" => "vgmstream"
lib.install "../src/libvgmstream.a"
end
end
end