PKGBUILDs/community/qpid-proton/PKGBUILD

47 lines
1.2 KiB
Bash
Raw Normal View History

2019-08-28 19:59:51 +00:00
# Maintainer: Nicola Squartini <tensor5@gmail.com>
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
# - disable LTO
pkgname=(qpid-proton python2-qpid-proton)
2020-01-17 19:01:42 +00:00
pkgver=0.30.0
2020-04-07 00:14:49 +00:00
pkgrel=2
2019-08-28 19:59:51 +00:00
pkgdesc='High-performance, lightweight messaging library'
arch=('x86_64')
url='https://qpid.apache.org/proton'
license=('Apache')
2020-01-17 19:01:42 +00:00
makedepends=('cmake' 'doxygen' 'python-setuptools' 'python2-setuptools' 'swig' 'jsoncpp')
2019-08-28 19:59:51 +00:00
source=("https://www.apache.org/dist/qpid/proton/${pkgver}/qpid-proton-${pkgver}.tar.gz")
2020-01-17 19:01:42 +00:00
sha512sums=('0e55d6a2c9803ef72604c50c7b934379092680b5edd52e3641a851f50ba1136bfa83cd30328d2b3235152331109d3204aa32168aa626d6e8e34a590d82553cc8')
2019-08-28 19:59:51 +00:00
build() {
cd ${pkgname}-${pkgver}
mkdir build
cd build
cmake \
-DCMAKE_INSTALL_PREFIX=/usr \
-DLIB_SUFFIX='' \
-DSYSINSTALL_BINDINGS=ON \
-DENABLE_LINKTIME_OPTIMIZATION=OFF \
..
make
cd python/dist
python2 setup.py build
}
package_qpid-proton() {
2019-09-14 23:54:56 +00:00
depends=('jsoncpp' 'libjsoncpp.so' 'python' 'ruby')
2019-08-28 19:59:51 +00:00
cd ${pkgname}-${pkgver}/build
make DESTDIR="${pkgdir}" install
}
package_python2-qpid-proton() {
depends=('python2')
cd qpid-proton-${pkgver}/build/python/dist
python2 setup.py install --root="${pkgdir}" --skip-build --optimize=1
}