[arch-commits] Commit in mdds/repos (staging-any staging-any/PKGBUILD)
Andreas Radke
andyrtr at archlinux.org
Mon Nov 2 16:13:00 UTC 2020
Date: Monday, November 2, 2020 @ 16:13:00
Author: andyrtr
Revision: 399152
archrelease: copy trunk to staging-any
Added:
mdds/repos/staging-any/
mdds/repos/staging-any/PKGBUILD
(from rev 399151, mdds/trunk/PKGBUILD)
----------+
PKGBUILD | 32 ++++++++++++++++++++++++++++++++
1 file changed, 32 insertions(+)
Copied: mdds/repos/staging-any/PKGBUILD (from rev 399151, mdds/trunk/PKGBUILD)
===================================================================
--- staging-any/PKGBUILD (rev 0)
+++ staging-any/PKGBUILD 2020-11-02 16:13:00 UTC (rev 399152)
@@ -0,0 +1,32 @@
+# Maintainer: AndyRTR <andyrtr at archlinux.org>
+# Contributor: kusakata <shohei atmark kusakata period com>
+
+pkgname=mdds
+pkgver=1.7.0
+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=('c55a87ea8f110185ed1a570b4df44eeaf187079c1afc2bb821bea36f4c07cde8')
+
+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