f0882a6104
Add SYMROOT for xcodebuild in case the Xcode defaults PBXApplicationwideBuildSettings specify a custom build location Signed-off-by: Adam Vandenberg <flangy@gmail.com>
12 lines
314 B
Ruby
12 lines
314 B
Ruby
require 'formula'
|
|
|
|
class Abfind <Formula
|
|
# Can't build from stable tarball
|
|
head "http://iharder.svn.sourceforge.net/svnroot/iharder/abfind/"
|
|
homepage 'http://iharder.sourceforge.net/current/macosx/abfind/'
|
|
|
|
def install
|
|
system "xcodebuild SYMROOT=build"
|
|
bin.install "build/Release/abfind"
|
|
end
|
|
end
|