homebrew-core/Formula/s3cmd.rb
Larry Shaffer 8b1b605edb s3cmd: add version to devel install
Closes Homebrew/homebrew#26098.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2014-01-22 11:25:49 -08:00

20 lines
525 B
Ruby

require 'formula'
class S3cmd < Formula
homepage 'http://s3tools.org/s3cmd'
url 'https://github.com/s3tools/s3cmd/archive/v1.0.1.zip'
sha1 '4a6f7bfb9300b728ca466967b91aa07521ef6f80'
head 'https://github.com/s3tools/s3cmd.git'
devel do
url 'https://github.com/s3tools/s3cmd/archive/v1.5.0-beta1.zip'
sha1 'ce5738c8d389b705b5a1283da6356df92673863b'
version "1.5.0-beta1"
end
def install
libexec.install 's3cmd', 'S3'
man1.install 's3cmd.1'
bin.install_symlink libexec+'s3cmd'
end
end