aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/vgmstream.rb
blob: 7bde0d4f9b0c551774a2e006da0f7b5ac7198a58 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
require 'formula'

class Vgmstream < Formula
  url 'https://vgmstream.svn.sourceforge.net/svnroot/vgmstream',
    :using => UnsafeSubversionDownloadStrategy, :revision => 970
  homepage 'http://hcs64.com/vgmstream.html'
  version 'r970'

  depends_on 'mpg123'
  depends_on 'libvorbis'

  def install
    Dir.chdir "test"
    system "make"
    bin.install "test" => "vgmstream"
    lib.install "../src/libvgmstream.a"
  end
end