homebrew-core/Formula/vgmstream.rb

20 lines
437 B
Ruby
Raw Normal View History

require 'formula'
class Vgmstream < Formula
homepage 'http://hcs64.com/vgmstream.html'
url 'https://vgmstream.svn.sourceforge.net/svnroot/vgmstream',
2012-01-08 18:15:15 +00:00
: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