Date: Sunday, September 13, 2020 @ 19:52:14 Author: arojas Revision: 396008
Preserve symlinks when installing libqhull.so Modified: qhull/trunk/PKGBUILD ----------+ PKGBUILD | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2020-09-13 19:46:38 UTC (rev 396007) +++ PKGBUILD 2020-09-13 19:52:14 UTC (rev 396008) @@ -7,7 +7,7 @@ pkgname=qhull pkgver=2020.2 _pkgver=8.0.2 -pkgrel=2 +pkgrel=3 pkgdesc="A general dimension code for computing convex hulls and related structures" arch=(x86_64) url="http://www.qhull.org/" @@ -27,7 +27,7 @@ package() { DESTDIR="$pkgdir" cmake --install build - install -Dm644 build/libqhull.so* -t "$pkgdir"/usr/lib/ + cp -P build/libqhull.so* "$pkgdir"/usr/lib/ # Install license install -Dm644 "$srcdir"/$pkgname-$pkgver/COPYING.txt -t "$pkgdir"/usr/share/licenses/$pkgname/
