# Maintainer: Dennis van der Schagt pkgname=eprosima-fast-dds pkgver=2.12.1 pkgrel=1 pkgdesc="eProsima's Fast-DDS implementation" arch=('x86_64') url="https://github.com/eProsima/Fast-DDS" license=('Apache') depends=('foonathan_memory-shared' 'asio' 'tinyxml2' 'eprosima-fast-cdr') makedepends=('cmake') checkdepends=() optdepends=() provides=() conflicts=() replaces=() backup=() options=() install= changelog= source=("https://github.com/eProsima/Fast-DDS/archive/v${pkgver}.tar.gz") noextract=() sha256sums=('2a165455decb1bc81703d76222b0a140c59f92e7bdeda4bdc838a8fecfcc8a2a') validpgpkeys=() build() { cd "Fast-DDS-$pkgver" cmake -B build \ -DCMAKE_INSTALL_PREFIX=/usr \ . cmake --build build --parallel 8 } package() { cd "Fast-DDS-$pkgver" make -C build DESTDIR="$pkgdir/" install }