Date: Tuesday, October 8, 2019 @ 11:13:15 Author: arojas Revision: 364146
Avoid using boost's cmake config files so that link targets are explicitly listed in libkolabxml's own cmake config (fixes build of kdepim-runtime) Modified: libkolabxml/trunk/PKGBUILD ----------+ PKGBUILD | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2019-10-08 10:28:16 UTC (rev 364145) +++ PKGBUILD 2019-10-08 11:13:15 UTC (rev 364146) @@ -3,7 +3,7 @@ pkgname=libkolabxml pkgver=1.1.6 -pkgrel=11 +pkgrel=12 pkgdesc="Kolab XML Format Schema Definitions Library" url='https://www.kolab.org/' arch=('x86_64') @@ -21,9 +21,9 @@ build() { cd build cmake ../${pkgname}-${pkgver} \ - -DCMAKE_BUILD_TYPE=Release \ -DCMAKE_INSTALL_PREFIX=/usr \ - -DBUILD_TESTS=OFF + -DBUILD_TESTS=OFF \ + -DBoost_NO_BOOST_CMAKE=ON make }
