]> arthur.barton.de Git - homebrew-alex.git/blobdiff - Formula/identd.rb
identd: Update syntax of inline patch
[homebrew-alex.git] / Formula / identd.rb
index e7e4aff942c34c19e4131167c397d6f40eff5576..d93289e2ec14d0747033b04cf427946dae0b9e25 100644 (file)
@@ -1,23 +1,20 @@
-require 'formula'
-
 class Identd < Formula
-  url 'http://rc.shaunrowland.com/git/identd.git', :using => :git
-  version '0.20120228'
-  homepage 'http://www.shaunrowland.com/fsync/2011/05/15/identd-for-mac-os-x/'
+  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
-    DATA
-  end
+  # manual page: remove "manual uninstall" description
+  patch :DATA
 
   def install
     inreplace "identd.xcodeproj/project.pbxproj",
       /CODE_SIGN_IDENTITY = \".*\"/, 'CODE_SIGN_IDENTITY=""'
     inreplace "identd/identd.8",
-      /\/usr\/local/, "#{HOMEBREW_PREFIX}"
-    system "xcodebuild -target identd -configuration Release"
-    sbin.install('build/Release/identd')
-    man8.install('identd/identd.8')
+      %r{/usr/local}, "#{HOMEBREW_PREFIX}"
+    xcodebuild "SYMROOT=build", "-target", "identd", "-configuration", "Release"
+    sbin.install("build/Release/identd")
+    man8.install("identd/identd.8")
   end
 end