blob: 4bb6bad3db61f564763112f07cba55d6409443e3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
require 'formula'
class Mackup < Formula
homepage 'https://github.com/lra/mackup'
url 'https://github.com/lra/mackup/archive/0.4.4.tar.gz'
sha1 '8303598efb69c30b8fea83020c5531853cc036c7'
def install
bin.install "mackup.py" => "mackup"
(share/'mackup').install ".mackup.cfg" => "mackup.cfg.example"
end
end
|