[arch-commits] Commit in wiredtiger/repos (2 files)
Felix Yan
felixonmars at archlinux.org
Sun Sep 17 18:56:11 UTC 2017
Date: Sunday, September 17, 2017 @ 18:56:10
Author: felixonmars
Revision: 258643
archrelease: copy trunk to community-staging-x86_64
Added:
wiredtiger/repos/community-staging-x86_64/
wiredtiger/repos/community-staging-x86_64/PKGBUILD
(from rev 258642, wiredtiger/trunk/PKGBUILD)
----------+
PKGBUILD | 36 ++++++++++++++++++++++++++++++++++++
1 file changed, 36 insertions(+)
Copied: wiredtiger/repos/community-staging-x86_64/PKGBUILD (from rev 258642, wiredtiger/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD (rev 0)
+++ community-staging-x86_64/PKGBUILD 2017-09-17 18:56:10 UTC (rev 258643)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+# Contributor: Stefan Husmann <stefan-husmann at t-online.de>
+
+pkgname=wiredtiger
+pkgver=2.9.3
+pkgrel=1
+pkgdesc="High performance, scalable, production quality, NoSQL, Open Source extensible platform for data management"
+arch=('x86_64')
+url="http://source.wiredtiger.com/"
+license=('GPL')
+depends=('snappy' 'lz4' 'zlib' 'gperftools')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/wiredtiger/wiredtiger/archive/$pkgver.tar.gz")
+sha512sums=('3ba7e3bd7990cdfc870618bfcd5e5c08bde617b835c563ce063fb7954f9ebf107ab3557ff70ea78fa4cc28b9762e8be2b2acb31c366782fc5c67ec554f5dd9c5')
+
+build() {
+ cd wiredtiger-$pkgver
+
+ ./autogen.sh
+ ./configure --prefix=/usr \
+ --enable-leveldb \
+ --enable-lz4 \
+ --enable-tcmalloc \
+ --with-builtins=snappy,zlib
+ make
+}
+
+check() {
+ cd wiredtiger-$pkgver
+ make test
+}
+
+package() {
+ cd wiredtiger-$pkgver
+ make DESTDIR="$pkgdir" install
+}
More information about the arch-commits
mailing list