2011-10-06 12:48:53 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Dsocks < Formula
|
|
|
|
homepage 'http://monkey.org/~dugsong/dsocks/'
|
2014-03-05 07:22:08 +00:00
|
|
|
url 'https://dsocks.googlecode.com/files/dsocks-1.8.tar.gz'
|
2012-11-19 01:30:36 +00:00
|
|
|
sha1 'd9d58e0ed6ca766841c94b5d15dd268a967c60bc'
|
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
|