6a62a27e05
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
20 lines
459 B
Ruby
20 lines
459 B
Ruby
require 'formula'
|
|
|
|
class Libuv < Formula
|
|
homepage 'https://github.com/joyent/libuv'
|
|
url 'https://github.com/joyent/libuv/archive/v0.10.3.tar.gz'
|
|
sha1 'ec458e098e1ce0eb52c83928fc012d83c364d8e9'
|
|
|
|
head 'https://github.com/joyent/libuv.git', :branch => 'master'
|
|
|
|
option :universal
|
|
|
|
def install
|
|
ENV.universal_binary if build.universal?
|
|
|
|
system 'make', 'libuv.dylib'
|
|
|
|
include.install Dir['include/*']
|
|
lib.install 'libuv.dylib'
|
|
end
|
|
end
|