rmpkg: wiredtiger

This commit is contained in:
George Rawlinson 2021-12-07 21:46:45 +00:00
parent 38b5dd9e0c
commit 08b5077f62
Signed by: grawlinson
GPG Key ID: E0959FEA8B550539
2 changed files with 0 additions and 44 deletions

View File

@ -1,16 +0,0 @@
pkgbase = wiredtiger
pkgdesc = High performance NoSQL platform
pkgver = 10.0.0
pkgrel = 1
url = https://source.wiredtiger.com
arch = x86_64
license = GPL
depends = snappy
depends = lz4
depends = zlib
depends = zstd
depends = gperftools
source = wiredtiger-10.0.0.tar.gz::https://github.com/wiredtiger/wiredtiger/archive/10.0.0.tar.gz
b2sums = 2b9b85bd7711c114a9b6e3c8cd0db3ce8ba6d08efd3b7b8e39ceff8cd251147c9d9a13942353ec885b7542f732d25946befd814fc046225bfde6ae6d31097c10
pkgname = wiredtiger

View File

@ -1,28 +0,0 @@
# Maintainer: George Rawlinson <george@rawlinson.net.nz>
pkgname=wiredtiger
pkgver=10.0.0
pkgrel=1
pkgdesc="High performance NoSQL platform"
arch=('x86_64')
url="https://source.wiredtiger.com"
license=('GPL')
depends=('snappy' 'lz4' 'zlib' 'zstd' 'gperftools')
source=("$pkgname-$pkgver.tar.gz::https://github.com/wiredtiger/wiredtiger/archive/$pkgver.tar.gz")
b2sums=('2b9b85bd7711c114a9b6e3c8cd0db3ce8ba6d08efd3b7b8e39ceff8cd251147c9d9a13942353ec885b7542f732d25946befd814fc046225bfde6ae6d31097c10')
build() {
cd "$pkgname-$pkgver"
./autogen.sh
./configure --prefix=/usr \
--enable-tcmalloc \
--with-builtins=snappy,lz4,zlib,zstd
# FIXME plain `make` does a bunch of tests ... find the invocation that *only* builds
#make
}
package() {
cd "$pkgname-$pkgver"
make DESTDIR="$pkgdir" install
}