blob: d66433b09ff10042e6d7f28cf5971db7e7da96e5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
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
|