[arch-commits] Commit in mdds/repos (staging-any staging-any/PKGBUILD)

Andreas Radke andyrtr at gemini.archlinux.org
Wed Feb 2 16:12:15 UTC 2022


    Date: Wednesday, February 2, 2022 @ 16:12:14
  Author: andyrtr
Revision: 435817

archrelease: copy trunk to staging-any

Added:
  mdds/repos/staging-any/
  mdds/repos/staging-any/PKGBUILD
    (from rev 435816, mdds/trunk/PKGBUILD)

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

Copied: mdds/repos/staging-any/PKGBUILD (from rev 435816, mdds/trunk/PKGBUILD)
===================================================================
--- staging-any/PKGBUILD	                        (rev 0)
+++ staging-any/PKGBUILD	2022-02-02 16:12:14 UTC (rev 435817)
@@ -0,0 +1,32 @@
+# Maintainer: AndyRTR <andyrtr at archlinux.org>
+# Contributor: kusakata <shohei atmark kusakata period com>
+
+pkgname=mdds
+pkgver=2.0.1
+pkgrel=1
+pkgdesc="A collection of multi-dimensional data structures and indexing algorithms"
+arch=('any')
+url="https://gitlab.com/mdds/mdds"
+license=('MIT')
+checkdepends=('boost')
+#source=(https://gitlab.com/mdds/mdds/repository/archive.tar.gz?ref=${pkgver})
+source=(https://kohei.us/files/mdds/src/${pkgname}-${pkgver}.tar.xz)
+# checksums listed there - https://gitlab.com/mdds/mdds
+sha256sums=('05e71772e34da303f2d1a5a5ec0851187b50797dca3a9a40222555b77242c48a')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./autogen.sh --prefix=/usr
+  # make
+}
+
+check() {
+  cd ${pkgname}-${pkgver}
+  make check
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+  install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}



More information about the arch-commits mailing list