blob: 897b95dd54337061845c8bea1dc271d649f16593 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
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
|