da3fdbd0cf
* And "mkdir" isntead of "Dir.mkdir" * And "Dir[]" instead of "Dir.glob" * Also style fixes and nitpicks
19 lines
437 B
Ruby
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
|