blob: 28535f696f587ff1029df51b4e9d757003a30b82 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
require "formula"
class Mackup < Formula
homepage "https://github.com/lra/mackup"
url "https://github.com/lra/mackup/archive/0.7.4.tar.gz"
sha1 "6de195ec94018c0e225f115278a9f8d720ad5c75"
head "https://github.com/lra/mackup.git"
def install
system "python", "setup.py", "install", "--prefix=#{prefix}",
"--single-version-externally-managed",
"--record=installed.txt"
end
test do
system "#{bin}/mackup", "--help"
end
end
|