39099ccb9a
Signed-off-by: Mike McQuaid <mike@mikemcquaid.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.6.tar.gz'
|
|
sha1 '948c5fae2e130a279dce2324912e4f6057ae49ff'
|
|
|
|
def install
|
|
bin.install "mackup.py" => "mackup"
|
|
(share/'mackup').install ".mackup.cfg" => "mackup.cfg.example"
|
|
end
|
|
end
|