aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/vgmstream.rb
blob: e364d4fc92d600feb33ee062041dbed9552496f5 (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 '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