diff options
| author | Jack Nagel | 2014-09-23 19:58:09 -0500 | 
|---|---|---|
| committer | Jack Nagel | 2014-09-23 19:58:13 -0500 | 
| commit | f59edb87c938f64dc1b619c56ef620dbb4675c32 (patch) | |
| tree | 3bb950ab4f3c0d0594469eab350f8603689adf25 | |
| parent | 3002dd932a9831348dae18cfc46fe4b811d45f06 (diff) | |
| download | homebrew-f59edb87c938f64dc1b619c56ef620dbb4675c32.tar.bz2 | |
mackup 0.7.4
Closes #32325.
| -rw-r--r-- | Library/Formula/mackup.rb | 16 | 
1 files changed, 9 insertions, 7 deletions
| diff --git a/Library/Formula/mackup.rb b/Library/Formula/mackup.rb index bde3cd1bc..28535f696 100644 --- a/Library/Formula/mackup.rb +++ b/Library/Formula/mackup.rb @@ -1,17 +1,19 @@ -require 'formula' +require "formula"  class Mackup < Formula -  homepage 'https://github.com/lra/mackup' -  url 'https://github.com/lra/mackup/archive/0.7.3.tar.gz' -  sha1 'c0d03ebd1232da760358dc01d9760a8ec819f727' +  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' +  head "https://github.com/lra/mackup.git"    def install -    system 'python', 'setup.py', 'install', "--prefix=#{prefix}" +    system "python", "setup.py", "install", "--prefix=#{prefix}", +                     "--single-version-externally-managed", +                     "--record=installed.txt"    end    test do -    system "#{bin}/mackup", '--help' +    system "#{bin}/mackup", "--help"    end  end | 
