2013-05-16 23:16:57 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Mackup < Formula
|
|
|
|
homepage 'https://github.com/lra/mackup'
|
2014-01-26 09:32:12 +00:00
|
|
|
url 'https://github.com/lra/mackup/archive/0.5.9.tar.gz'
|
|
|
|
sha1 '69d13c27b3a2794ddecb415333e783ca45aff055'
|
|
|
|
|
|
|
|
head 'https://github.com/lra/mackup.git'
|
|
|
|
|
|
|
|
depends_on :python
|
2013-05-16 23:16:57 +00:00
|
|
|
|
|
|
|
def install
|
2014-01-26 09:32:12 +00:00
|
|
|
bin.install 'bin/mackup'
|
|
|
|
(prefix+'mackup').install 'mackup/__init__.py', 'mackup/main.py'
|
|
|
|
share.install '.mackup.cfg' => 'mackup.cfg.example'
|
|
|
|
end
|
|
|
|
|
|
|
|
def test
|
|
|
|
system "#{bin}/mackup", '-h'
|
2013-05-16 23:16:57 +00:00
|
|
|
end
|
|
|
|
end
|