homebrew-core/Formula/xmp.rb
Misty De Meo beaf40e2a2 xmp 3.5.0
Also install the included sample module, and add a test.
2012-01-27 13:18:16 -06:00

19 lines
441 B
Ruby

require 'formula'
class Xmp < Formula
url 'http://downloads.sourceforge.net/project/xmp/xmp/3.5.0/xmp-3.5.0.tar.gz'
homepage 'http://xmp.sourceforge.net'
md5 '47e54e6dfa88ce37370054d4a3ea955f'
def install
system "./configure", "--prefix=#{prefix}"
system "make install"
# install the included demo song
share.install "SynthSong1"
end
def test
system "#{bin}/xmp --load-only #{share}/SynthSong1"
end
end