aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/vgmstream.rb
blob: d54892a918e956f9f9ceeadbe028cee7cb74b923 (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 => 982
  version 'r982'

  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