blob: 18fd4a23a3fe29148459305ccc86f81c79022c47 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
require 'formula'
class Mftrace <Formula
url 'http://lilypond.org/download/sources/mftrace/mftrace-1.2.16.tar.gz'
homepage 'http://lilypond.org/mftrace/'
md5 '1c65846471db8f10902b96b7b3120da5'
depends_on 'potrace'
depends_on 't1utils'
def install
system "./configure", "--prefix=#{prefix}"
system "make install"
end
end
|