Commit e47c7460 authored by Casey Strouse's avatar Casey Strouse

Add npth (1.3) package

nPth is a library to provide the GNU Pth API and thus a non-preemptive
threads implementation.

Tested as working on Samsung XE50013-K01US (x86_64). All tests passing.
https://gist.github.com/cstrouse/080899dc9f67fb118c9dca8cfae39428
parent bab9911b
require 'package'
class Npth < Package
version '1.3'
source_url 'https://www.gnupg.org/ftp/gcrypt/npth/npth-1.3.tar.bz2'
source_sha1 '1b21507cfa3f58bdd19ef2f6800ab4cb67729972'
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