Date: Friday, October 21, 2022 @ 19:10:33
  Author: felixonmars
Revision: 1333263

archrelease: copy trunk to community-staging-x86_64

Added:
  mongo-c-driver/repos/community-staging-x86_64/
  mongo-c-driver/repos/community-staging-x86_64/PKGBUILD
    (from rev 1333262, mongo-c-driver/trunk/PKGBUILD)

----------+
 PKGBUILD |   42 ++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 42 insertions(+)

Copied: mongo-c-driver/repos/community-staging-x86_64/PKGBUILD (from rev 
1333262, mongo-c-driver/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD                           (rev 0)
+++ community-staging-x86_64/PKGBUILD   2022-10-21 19:10:33 UTC (rev 1333263)
@@ -0,0 +1,42 @@
+# Maintainer: Felix Yan <[email protected]>
+
+pkgname=mongo-c-driver
+pkgver=1.23.0
+pkgrel=2
+pkgdesc='A client library written in C for MongoDB'
+arch=('x86_64')
+url='https://www.mongodb.org/display/DOCS/C+Language+Center'
+license=('Apache')
+depends=('libsasl' 'icu' 'snappy' 'zlib' 'zstd')
+makedepends=('cmake')
+provides=('libbson' 'libmongoc')
+conflicts=('libbson' 'libmongoc')
+replaces=('libbson' 'libmongoc')
+source=("https://github.com/mongodb/mongo-c-driver/releases/download/$pkgver/$pkgname-$pkgver.tar.gz";)
+sha512sums=('8a178219c5741f0d7d6120a9e01600dd48dbdd55650617bddd0f75204ec08e569d160f5d4227d4e500c05897b46206c21ee5b61c9ceae5024c73edec6ca7accd')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../mongo-c-driver-$pkgver \
+    -DCMAKE_BUILD_TYPE=Release \
+    -DCMAKE_INSTALL_PREFIX=/usr \
+    -DCMAKE_INSTALL_LIBDIR=lib \
+    -DENABLE_STATIC=OFF -DENABLE_TESTS=OFF
+    # Test profiles are not found even with ENABLE_TESTS=ON
+  make
+}
+
+check() {
+  cd build
+  # No test profile found
+  # pifpaf run mongodb --port 27017 make test || echo "Tests failed"
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir/" install
+}

Reply via email to