From a41572b5d18e80697d6474a9678cff920fbe6ec2 Mon Sep 17 00:00:00 2001 From: muttley Date: Wed, 26 Jun 2019 10:06:20 +0200 Subject: [PATCH] pistache: move lib64/ to lib/ /usr/lib64/ is owned by 'filesystem' package also removed unnecessary comment, now library builds shared library by default --- pistache/git/PKGBUILD | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/pistache/git/PKGBUILD b/pistache/git/PKGBUILD index 617d6428..eb2f20db 100644 --- a/pistache/git/PKGBUILD +++ b/pistache/git/PKGBUILD @@ -5,7 +5,7 @@ pkgname=pistache-git _name=${pkgname%-git} -pkgver=223.7184600 +pkgver=985.c5927e1 pkgrel=1 arch=('i686' 'x86_64') pkgdesc='Modern and elegant HTTP and REST framework for C++' @@ -26,9 +26,6 @@ pkgver() { build() { cd "${srcdir}/${_name}" - # since this is only a small lib and ABI seems very unstable at this point - # it should be ok to build it only as a static lib for now - cmake \ -DCMAKE_BUILD_TYPE=Release \ -DPISTACHE_BUILD_TESTS=true \ @@ -44,4 +41,5 @@ check() { package() { cd "${srcdir}/${_name}" make DESTDIR="${pkgdir}" install + mv ${pkgdir}/usr/lib{64,} }