12 lines
315 B
Ruby
12 lines
315 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
|