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

class Ripmime < Formula
  url 'http://www.pldaniels.com/ripmime/ripmime-1.4.0.9.tar.gz'
  homepage 'http://www.pldaniels.com/ripmime/'
  sha1 '883fbed480807c2425965f1c1a96d4c207ae8634'

  def install
    system "make"

    # Don't "make install", do it manually
    bin.install "ripmime"
    man1.install "ripmime.1"
  end
end