homebrew-core/Formula/mackup.rb
Ted Pennings 4cd0935be7 Convert all 'def test' formulae to 'test do'
Closes Homebrew/homebrew#26942.
Closes Homebrew/homebrew#26946.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2014-02-24 19:54:02 -08:00

19 lines
402 B
Ruby

require 'formula'
class Mackup < Formula
homepage 'https://github.com/lra/mackup'
url 'https://github.com/lra/mackup/archive/0.7.tar.gz'
sha1 '6876f5b08c80f1ff11570e5a1db073a2c080dcf2'
head 'https://github.com/lra/mackup.git'
depends_on :python
def install
system 'python', 'setup.py', 'install', "--prefix=#{prefix}"
end
test do
system "#{bin}/mackup", '--help'
end
end