homebrew-core/Formula/xmp.rb
Misty De Meo 08b4ca1831 xmp 4.0.2
2013-04-08 22:12:26 -05:00

21 lines
484 B
Ruby

require 'formula'
class Xmp < Formula
homepage 'http://xmp.sourceforge.net'
url 'http://downloads.sourceforge.net/project/xmp/xmp/4.0.2/xmp-4.0.2.tar.gz'
sha1 '32c2d5884cd94cfbc442095200d625b9f7ec6d2d'
depends_on 'libxmp'
def install
system "./configure", "--prefix=#{prefix}"
system "make install"
# install the included demo song
share.install "08_sad_song.it"
end
def test
system "#{bin}/xmp", "--load-only", share/"08_sad_song.it"
end
end