19 lines
423 B
Ruby
19 lines
423 B
Ruby
require 'formula'
|
|
|
|
class Vgmstream < Formula
|
|
homepage 'http://hcs64.com/vgmstream.html'
|
|
url 'http://svn.code.sf.net/p/vgmstream/code',
|
|
:using => UnsafeSubversionDownloadStrategy, :revision => 1014
|
|
version 'r1014'
|
|
|
|
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
|