# Maintainer: acxz # Contributor: Tim Rakowski # Contributor: Johannes Wienke # Contributor: Benjamin Chrétien pkgname=ignition-transport pkgver=8.0.0 pkgrel=3 pkgdesc="The transport library combines ZeroMQ with Protobufs to create a fast and efficient message passing system. Asynchronous message publication and subscription is provided along with service calls and discovery." arch=('i686' 'x86_64') url="https://ignitionrobotics.org/libs/transport" license=('Apache') groups=('development') depends=('protobuf' 'protobuf-c' 'zeromq' 'ignition-msgs>=5' 'ignition-tools' 'libutil-linux') makedepends=('ignition-cmake>=2' 'util-linux') optdepends=() conflicts=() source=("https://github.com/ignitionrobotics/ign-transport/archive/${pkgname}8_${pkgver}.tar.gz") sha256sums=('83a703b584a2ec75fa7afe7e0829dd3e9e94a63abff76501dfe2e9839e891630') _dir="ign-transport-${pkgname}8_${pkgver}" build() { cd "${srcdir}/${_dir}" mkdir -p build && cd build cmake .. -DCMAKE_BUILD_TYPE="Release" \ -DCMAKE_INSTALL_PREFIX="/usr" \ -DCMAKE_INSTALL_LIBDIR="lib" \ -DBUILD_TESTING=Off make } package() { cd "${srcdir}/${_dir}/build" make DESTDIR="${pkgdir}/" install }