From 9c4932c1100f256a14a0d9d5dbb54e6d02c80e70 Mon Sep 17 00:00:00 2001 From: Alexander Barton Date: Fri, 15 Jan 2016 10:54:40 +0100 Subject: [PATCH] identd: Fix "brew audit" problems * `homepage` (line 6) should be put before `url` (line 4) * A `test do` test block should be added * Stable: Redundant :using value in URL * Formula should have a desc (Description). * use "xcodebuild *args" instead of "system 'xcodebuild', *args" * `require "formula"` is now unnecessary * Use `system "xcodebuild", "-target", "identd", "-configuration", "Release"` instead of `system "xcodebuild -target identd -configuration Release"` Signed-off-by: Alexander Barton --- Formula/identd.rb | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/Formula/identd.rb b/Formula/identd.rb index f9c8c94..73c2117 100644 --- a/Formula/identd.rb +++ b/Formula/identd.rb @@ -1,9 +1,8 @@ -require "formula" - class Identd < Formula - url "http://rc.shaunrowland.com/git/identd.git", :using => :git - version "0.20120228" + desc "Simple IDENT daemon" homepage "http://www.shaunrowland.com/fsync/2011/05/15/identd-for-mac-os-x/" + url "http://rc.shaunrowland.com/git/identd.git" + version "0.20120228" def patches # manual page: remove "manual uninstall" description @@ -15,7 +14,7 @@ class Identd < Formula /CODE_SIGN_IDENTITY = \".*\"/, 'CODE_SIGN_IDENTITY=""' inreplace "identd/identd.8", %r{/usr/local}, "#{HOMEBREW_PREFIX}" - system "xcodebuild -target identd -configuration Release" + xcodebuild "SYMROOT=build", "-target", "identd", "-configuration", "Release" sbin.install("build/Release/identd") man8.install("identd/identd.8") end -- 2.39.2