homebrew-core/Formula/duply.rb
Clemens Horch 6f07ccc45c duply 1.11.2
- upgraded to new upstream version 1.11.2
- added do test section to formula: "However, a bad test is better
  than no test at all." (Formula-Cookbook.md#add-a-test-to-the-formula)

Closes Homebrew/homebrew#50277.

Signed-off-by: Dominyk Tiller <dominyktiller@gmail.com>
2016-03-22 18:54:26 +08:00

18 lines
438 B
Ruby

class Duply < Formula
desc "Frontend to the duplicity backup system"
homepage "http://duply.net"
url "https://downloads.sourceforge.net/project/ftplicity/duply%20%28simple%20duplicity%29/1.11.x/duply_1.11.2.tgz"
sha256 "06843960ae5753395cb5be72a9c9f2fe78e6ea81a17c6d8d28f2ae49ab50d5aa"
bottle :unneeded
depends_on "duplicity"
def install
bin.install "duply"
end
test do
system "#{bin}/duply", "-v"
end
end