blob: a9fb9dfce008a133f0694e57ec9f8e6d5214551c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
require "formula"
class Vgmstream < Formula
homepage "http://hcs64.com/vgmstream.html"
url "http://svn.code.sf.net/p/vgmstream/code", :revision => 1039
version "r1039"
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
|