aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorMisty De Meo2011-10-19 13:12:41 -0500
committerJack Nagel2011-11-05 22:12:51 -0500
commit0e318ead7589fedca2f647d0401324bfe0179a9d (patch)
treef8e5cc45ba14c54244be7fd232073abab4dcbbce /Library
parent6bec7fc9e86676c0d701c5712376cdbe13ec615f (diff)
downloadhomebrew-0e318ead7589fedca2f647d0401324bfe0179a9d.tar.bz2
New formula: vgmstream
Closes #8199. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/vgmstream.rb18
1 files changed, 18 insertions, 0 deletions
diff --git a/Library/Formula/vgmstream.rb b/Library/Formula/vgmstream.rb
new file mode 100644
index 000000000..81bf3b06a
--- /dev/null
+++ b/Library/Formula/vgmstream.rb
@@ -0,0 +1,18 @@
+require 'formula'
+
+class Vgmstream < Formula
+ url 'https://vgmstream.svn.sourceforge.net/svnroot/vgmstream',
+ :using => UnsafeSubversionDownloadStrategy, :revision => 967
+ homepage 'http://hcs64.com/vgmstream.html'
+ version 'r967'
+
+ depends_on 'mpg123'
+ depends_on 'libvorbis'
+
+ def install
+ Dir.chdir "test"
+ system "make"
+ bin.install "test" => "vgmstream"
+ lib.install "../src/libvgmstream.a"
+ end
+end