1a2855942e
Closes Homebrew/homebrew#24669. Signed-off-by: Rogerio Prado de Jesus <rogeriopradoj@gmail.com> Closes Homebrew/homebrew#24669. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
12 lines
326 B
Ruby
12 lines
326 B
Ruby
require 'formula'
|
|
|
|
class Mackup < Formula
|
|
homepage 'https://github.com/lra/mackup'
|
|
url 'https://github.com/lra/mackup/archive/0.5.3.tar.gz'
|
|
sha1 '85b5d8fd54da99c3dfb13f420b6eedcddfc56b20'
|
|
|
|
def install
|
|
bin.install "mackup.py" => "mackup"
|
|
(share/'mackup').install ".mackup.cfg" => "mackup.cfg.example"
|
|
end
|
|
end
|