Date: Thursday, April 6, 2023 @ 14:33:36
Author: felixonmars
Revision: 1439257
archrelease: copy trunk to community-staging-x86_64
Added:
whitedb/repos/community-staging-x86_64/
whitedb/repos/community-staging-x86_64/PKGBUILD
(from rev 1439253, whitedb/trunk/PKGBUILD)
----------+
PKGBUILD | 25 +++++++++++++++++++++++++
1 file changed, 25 insertions(+)
Copied: whitedb/repos/community-staging-x86_64/PKGBUILD (from rev 1439253,
whitedb/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD (rev 0)
+++ community-staging-x86_64/PKGBUILD 2023-04-06 14:33:36 UTC (rev 1439257)
@@ -0,0 +1,25 @@
+# Maintainer: Bartłomiej Piotrowski <[email protected]>
+# Contributor: ushi <[email protected]>
+
+pkgname=whitedb
+pkgver=0.7.3
+pkgrel=9
+pkgdesc='Lightweight NoSQL database library operating fully in main memory'
+arch=('x86_64')
+url='http://whitedb.org/'
+license=('GPL')
+makedepends=('python')
+optdepends=('python: for python bindings')
+source=(http://whitedb.org/$pkgname-$pkgver.tar.gz)
+md5sums=('fb9d79ad19d65f3f50fe3f82316a9721')
+sha256sums=('10c4ccd754ed2d53dbdef9ec16c88c732aa73d923fc0ee114e7e3a78a812849d')
+
+build() {
+ cd $pkgname-$pkgver
+ ./configure --prefix=/usr --with-python
+ make
+}
+
+package() {
+ make -C $pkgname-$pkgver DESTDIR="$pkgdir" install
+}