Commit 06cf2013 authored by lyxell's avatar lyxell Committed by GitHub

Merge pull request #450 from cstrouse/add-libuv

Add libuv (1.9.1) package
parents 19101798 ee340bd2
require 'package'
class Libuv < Package
version '1.9.1'
source_url 'http://dist.libuv.org/dist/v1.9.1/libuv-v1.9.1.tar.gz'
source_sha1 '668d636372e3276aecc6082082a86f86ddb67877'
depends_on 'glibc'
def self.build
system './autogen.sh'
system './configure --prefix=/usr/local'
system 'make'
end
def self.install
system "make", "DESTDIR=#{CREW_DEST_DIR}", "install"
end
end
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment