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

class S3cmd < Formula
  homepage 'http://s3tools.org/s3cmd'
  url 'http://downloads.sourceforge.net/project/s3tools/s3cmd/1.0.1/s3cmd-1.0.1.tar.gz'
  md5 'dc62becc03a3e6100843611ebe2707c2'

  devel do
    url 'http://downloads.sourceforge.net/project/s3tools/s3cmd/1.1.0-beta3/s3cmd-1.1.0-beta3.zip'
    md5 '04f9ed14026972f61407e98b0cbe6445'
  end

  def install
    libexec.install 's3cmd', 'S3'
    man1.install 's3cmd.1'
    bin.install_symlink libexec+'s3cmd'
  end
end