homebrew-core/Formula/duply.rb
2018-07-24 09:42:32 +02: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.1.x/duply_2.1.tgz"
sha256 "a8d2bfa907aacbef1c66bf1079fa24e541ad63f5d0694029e4596b030f3cb244"
bottle :unneeded
depends_on "duplicity"
def install
bin.install "duply"
end
test do
system "#{bin}/duply", "-v"
end
end