2013-05-16 23:16:57 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Mackup < Formula
|
|
|
|
homepage 'https://github.com/lra/mackup'
|
2014-02-01 05:39:35 +00:00
|
|
|
url 'https://github.com/lra/mackup/archive/0.6.tar.gz'
|
|
|
|
sha1 '29526abfc45dfc04e865e06485aac886306b377f'
|
2014-01-26 09:32:12 +00:00
|
|
|
|
|
|
|
head 'https://github.com/lra/mackup.git'
|
|
|
|
|
|
|
|
depends_on :python
|
2013-05-16 23:16:57 +00:00
|
|
|
|
|
|
|
def install
|
2014-02-01 05:39:35 +00:00
|
|
|
system 'python', 'setup.py', 'install', "--prefix=#{prefix}"
|
2014-01-26 09:32:12 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def test
|
|
|
|
system "#{bin}/mackup", '-h'
|
2013-05-16 23:16:57 +00:00
|
|
|
end
|
|
|
|
end
|