contrib/mdds/Pkgfile

22 lines
481 B
Plaintext
Raw Normal View History

2019-08-11 11:14:11 +02:00
# Description: A collection of multi-dimensional data structures and indexing algorithms
# URL: https://gitlab.com/mdds/mdds
# Maintainer: Tim Biermann, tbier at posteo dot de
# Depends on: boost
name=mdds
2023-04-29 22:49:34 +02:00
version=2.1.1
release=1
2023-01-28 13:00:11 +01:00
source=(https://kohei.us/files/mdds/src/$name-$version.tar.bz2
use-after-free.patch)
2019-08-11 11:14:11 +02:00
build() {
cd $name-$version
2023-01-28 13:00:11 +01:00
patch -Np0 -i $SRC/use-after-free.patch
2019-08-11 11:14:11 +02:00
./autogen.sh --prefix=/usr
make DESTDIR=$PKG install
2023-01-28 13:00:11 +01:00
2019-08-11 11:14:11 +02:00
rm -fr $PKG/usr/share/doc
}