aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/atool.rb
blob: 5838056a3c0424bf33890bed2ca36056483012b9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
require 'formula'

class Atool < Formula
  url 'http://savannah.nongnu.org/download/atool/atool-0.38.0.tar.gz'
  homepage 'http://www.nongnu.org/atool/'
  md5 'bf05a07f7b35415d146b2e21edc1ebbf'

  depends_on "gnu-sed"

  def install
    system "./configure", "--prefix=#{prefix}"
    # OS X sed doesn't work; use GNU sed
    inreplace 'Makefile', 'sed -r', '#{HOMEBREW_PREFIX}/bin/gsed'
    system "make install"
  end
end