aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/shntool.rb
blob: 8a6281c845f3b8188af74e598213c9a8dc91b728 (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/'
  sha1 '7a2bc8801e180cf582f0e39775603582e35d50d2'

  def install
    system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}"
    system "make install"
  end
end