XMP (Extended Module Player) 3.3.0

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
Misty De Meo 2011-05-10 21:03:42 -05:00 committed by Adam Vandenberg
parent 03e0880dbd
commit 3838014d22

12
Formula/xmp.rb Normal file
View file

@ -0,0 +1,12 @@
require 'formula'
class Xmp < Formula
url 'http://downloads.sourceforge.net/project/xmp/xmp/3.3.0/xmp-3.3.0.tar.gz'
homepage 'http://xmp.sourceforge.net'
md5 '0ac15cdb68cf0a08f418d37b4c1843bd'
def install
system "./configure", "--prefix=#{prefix}"
system "make install"
end
end