2011-10-06 12:48:53 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Dsocks < Formula
|
|
|
|
url 'http://dsocks.googlecode.com/files/dsocks-1.7.tar.gz'
|
|
|
|
homepage 'http://monkey.org/~dugsong/dsocks/'
|
2012-09-03 18:33:56 +00:00
|
|
|
sha1 '7be86578e525312008e36c0c5800fefee0ea481a'
|
2011-10-06 12:48:53 +00:00
|
|
|
|
|
|
|
def install
|
|
|
|
system "#{ENV.cc} #{ENV.cflags} -shared -o libdsocks.dylib dsocks.c atomicio.c -lresolv"
|
|
|
|
inreplace "dsocks.sh", "/usr/local", HOMEBREW_PREFIX
|
|
|
|
|
|
|
|
lib.install "libdsocks.dylib"
|
|
|
|
bin.install "dsocks.sh"
|
|
|
|
end
|
|
|
|
end
|