2013-01-03 15:44:20 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Libuv < Formula
|
|
|
|
homepage 'https://github.com/joyent/libuv'
|
2013-05-22 02:07:21 +00:00
|
|
|
url 'https://github.com/joyent/libuv/archive/v0.10.7.tar.gz'
|
|
|
|
sha1 '6bb4fef7849a2d357589859dd83fd1ad897a21b2'
|
2013-01-03 15:44:20 +00:00
|
|
|
|
|
|
|
head 'https://github.com/joyent/libuv.git', :branch => 'master'
|
|
|
|
|
2013-01-10 19:01:52 +00:00
|
|
|
option :universal
|
|
|
|
|
2013-01-03 15:44:20 +00:00
|
|
|
def install
|
2013-01-10 19:01:52 +00:00
|
|
|
ENV.universal_binary if build.universal?
|
|
|
|
|
2013-01-03 15:44:20 +00:00
|
|
|
system 'make', 'libuv.dylib'
|
|
|
|
|
|
|
|
include.install Dir['include/*']
|
|
|
|
lib.install 'libuv.dylib'
|
|
|
|
end
|
|
|
|
end
|