homebrew-core/Formula/duply.rb
Caleb Xu 0394eb752d duply 2.2
Closes #38425.

Signed-off-by: FX Coudert <fxcoudert@gmail.com>
2019-03-27 22:07:37 +01:00

20 lines
587 B
Ruby

class Duply < Formula
desc "Frontend to the duplicity backup system"
# Canonical domain: duply.net
# Historical homepage: https://web.archive.org/web/20131126005707/ftplicity.sourceforge.net
homepage "https://sourceforge.net/projects/ftplicity/"
url "https://downloads.sourceforge.net/project/ftplicity/duply%20%28simple%20duplicity%29/2.2.x/duply_2.2.tgz"
sha256 "79e55942ef8d31d2319ed45a2c3e6c70b23797f98f5b072c31afd7cef58ea7ad"
bottle :unneeded
depends_on "duplicity"
def install
bin.install "duply"
end
test do
system "#{bin}/duply", "-v"
end
end