blob: 7f240e47a187d2bf13a7ce678f6651f48356481d (
plain)
1 # Description: A collection of multi-dimensional data structures and indexing algorithms
2 # URL: https://gitlab.com/mdds/mdds
3 # Maintainer: Tim Biermann, tbier at posteo dot de
4 # Depends on: boost
5
6 name=mdds
7 version=2.0.3
8 release=1
9 source=(https://kohei.us/files/mdds/src/$name-$version.tar.bz2)
10
11 build() {
12 cd $name-$version
13 ./autogen.sh --prefix=/usr
14 make DESTDIR=$PKG install
15 rm -fr $PKG/usr/share/doc
16 }
|