# Maintainer: Andrew Sun # Contributor: Benjamin Chrétien # Contributor: Soo-Hyun Yoo pkgname=octomap pkgver=1.9.7 pkgrel=1 pkgdesc="Efficient probabilistic 3D mapping framework based on octrees" arch=('i686' 'x86_64') url="https://octomap.github.io/" license=('BSD') depends=('gcc-libs') makedepends=('cmake') provides=('octomap') conflicts=('octomap-git') options=('staticlibs') source=("${pkgname}-${pkgver}.tar.gz"::"https://github.com/OctoMap/octomap/archive/v${pkgver}.tar.gz") sha256sums=('3e9ac020686ceb4e17e161bffc5a0dafd9cccab33adeb9adee59a61c418ea1c1') build() { cd "$srcdir/octomap-$pkgver/octomap" mkdir build && cd build cmake .. \ -DCMAKE_INSTALL_PREFIX=/usr make } package() { cd "$srcdir/octomap-$pkgver/octomap" cd build make DESTDIR="${pkgdir}" install install -Dm644 ../LICENSE.txt "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE.txt" } # vim: ts=2 sw=2 et: