aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/mackup.rb
blob: 6ed94b011f4336e6fb58a099b6d118981cbe05e9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
require 'formula'

class Mackup < Formula
  homepage 'https://github.com/lra/mackup'
  url 'https://github.com/lra/mackup/archive/0.7.2.tar.gz'
  sha1 '316417a29b2e8d44111f2bc63c6503ed08bddf9c'

  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