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

class Mackup < Formula
  homepage 'https://github.com/lra/mackup'
  url 'https://github.com/lra/mackup/archive/0.7.3.tar.gz'
  sha1 'c0d03ebd1232da760358dc01d9760a8ec819f727'

  head 'https://github.com/lra/mackup.git'

  def install
    system 'python', 'setup.py', 'install', "--prefix=#{prefix}"
  end

  test do
    system "#{bin}/mackup", '--help'
  end
end