Commit efdfb17e authored by lyxell's avatar lyxell Committed by GitHub

Merge pull request #499 from cstrouse/add-nanomsg

Add nanomsg (1.0.0) package
parents 3c165a74 2cb377cd
require 'package'
class Nanomsg < Package
version '1.0,0'
source_url 'https://github.com/nanomsg/nanomsg/archive/1.0.0.tar.gz'
source_sha1 '57f90778a9bb7b95a7fd73910fd41894f3ee9cab'
depends_on 'cmake'
def self.build
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