# Maintainer: Nicola Squartini # ALARM: Kevin Mihelich # - disable LTO pkgname=qpid-proton pkgver=0.30.0 pkgrel=3 pkgdesc='High-performance, lightweight messaging library' arch=('x86_64') url='https://qpid.apache.org/proton' license=('Apache') depends=('libjsoncpp.so' 'python' 'ruby') makedepends=('cmake' 'doxygen' 'python-setuptools' 'swig') source=("https://www.apache.org/dist/qpid/proton/${pkgver}/qpid-proton-${pkgver}.tar.gz") sha512sums=('0e55d6a2c9803ef72604c50c7b934379092680b5edd52e3641a851f50ba1136bfa83cd30328d2b3235152331109d3204aa32168aa626d6e8e34a590d82553cc8') build() { cd ${pkgname}-${pkgver} mkdir build cd build cmake \ -DCMAKE_INSTALL_PREFIX=/usr \ -DLIB_SUFFIX='' \ -DSYSINSTALL_BINDINGS=ON \ -DENABLE_LINKTIME_OPTIMIZATION=OFF \ .. make } package() { cd ${pkgname}-${pkgver}/build make DESTDIR="${pkgdir}" install }