New formula: vgmstream

Closes Homebrew/homebrew#8199.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
master
Misty De Meo 2011-10-19 13:12:41 -05:00 committed by Jack Nagel
parent f5512ef29f
commit e47caa1522
1 changed files with 18 additions and 0 deletions

18
Formula/vgmstream.rb Normal file
View File

@ -0,0 +1,18 @@
require 'formula'
class Vgmstream < Formula
url 'https://vgmstream.svn.sourceforge.net/svnroot/vgmstream',
:using => UnsafeSubversionDownloadStrategy, :revision => 967
homepage 'http://hcs64.com/vgmstream.html'
version 'r967'
depends_on 'mpg123'
depends_on 'libvorbis'
def install
Dir.chdir "test"
system "make"
bin.install "test" => "vgmstream"
lib.install "../src/libvgmstream.a"
end
end