blob: afd6efa3b16d9c8c845f3be1a33ff21acf713aa2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
require 'formula'
class Shntool <Formula
url 'http://etree.org/shnutils/shntool/dist/src/shntool-3.0.10.tar.gz'
homepage 'http://etree.org/shnutils/shntool/'
md5 '5d41f8f42c3c15e3145a7a43539c3eae'
def install
system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}"
system "make install"
end
end
|