class RedisAT40 < Formula desc "Persistent key-value database, with built-in net interface" homepage "https://redis.io/" url "https://github.com/antirez/redis/archive/4.0.13.tar.gz" sha256 "ef66f2c2b6c88424edadc541d3a7e43b8b066bd430da61180c56f598997b5506" bottle do cellar :any_skip_relocation sha256 "979a96d6f820c8ea1cc264a023cd5ddc0ac94b85a1d1c32db15f97250be4182a" => :mojave sha256 "f56c41731447f824dcb36b623c2d8fdae20b7c5e6f8d2daa30a58de950b9a9c9" => :high_sierra sha256 "6d1c52a547ee2a2ffbe7e97ea6e0277a657af28dee2eb3dc934421bd88573a96" => :sierra end keg_only :versioned_formula def install # Architecture isn't detected correctly on 32bit Snow Leopard without help ENV["OBJARCH"] = "-arch #{MacOS.preferred_arch}" system "make", "install", "PREFIX=#{prefix}", "CC=#{ENV.cc}" %w[run db/redis log].each { |p| (var/p).mkpath } # Fix up default conf file to match our paths inreplace "redis.conf" do |s| s.gsub! "/var/run/redis.pid", var/"run/redis.pid" s.gsub! "dir ./", "dir #{var}/db/redis/" s.sub! /^bind .*$/, "bind 127.0.0.1 ::1" end etc.install "redis.conf" etc.install "sentinel.conf" => "redis-sentinel.conf" end plist_options :manual => "#{HOMEBREW_PREFIX}/opt/redis@4.0/bin/redis-server #{HOMEBREW_PREFIX}/etc/redis.conf" def plist; <<~EOS KeepAlive SuccessfulExit Label #{plist_name} ProgramArguments #{opt_bin}/redis-server #{etc}/redis.conf --daemonize no RunAtLoad WorkingDirectory #{var} StandardErrorPath #{var}/log/redis.log StandardOutPath #{var}/log/redis.log EOS end test do system bin/"redis-server", "--test-memory", "2" %w[run db/redis log].each { |p| assert_predicate var/p, :exist?, "#{var/p} doesn't exist!" } end end