blob: c76cd10a850bb9d9608de31c09fe85ece6439b5d (
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.5.1.tar.gz'
sha1 '079c5004748c4f1818af105babbdddc04759762b'
def install
bin.install "mackup.py" => "mackup"
(share/'mackup').install ".mackup.cfg" => "mackup.cfg.example"
end
end
|