Commit 4e20883a authored by Casey Strouse's avatar Casey Strouse

Add whitedb package

WhiteDB is a Lightweight NoSQL database library operaring fully in main memory.

Tested as working on Samsung Chromebook Plus (aarch64). All tests passing.
parent 6df16d64
require 'package'
class Whitedb < Package
description 'Lightweight NoSQL database library operaring fully in main memory'
homepage 'http://whitedb.org'
version '0.7.3'
source_url 'https://whitedb.org/whitedb-0.7.3.tar.gz'
source_sha256 '10c4ccd754ed2d53dbdef9ec16c88c732aa73d923fc0ee114e7e3a78a812849d'
binary_url ({
})
binary_sha256 ({
})
def self.build
system './configure',
"--prefix=#{CREW_PREFIX}",
"--libdir=#{CREW_LIB_PREFIX}",
'--disable-depedency-tracking'
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