From 1183761495461b3aa8c4e189d01454c70b495de4 Mon Sep 17 00:00:00 2001 From: Kevin Mihelich Date: Tue, 9 Jul 2019 01:43:49 +0000 Subject: [PATCH] community/openscenegraph to 3.6.3-1.1 --- community/openscenegraph/PKGBUILD | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/community/openscenegraph/PKGBUILD b/community/openscenegraph/PKGBUILD index ac269ad85..5be7fcd76 100644 --- a/community/openscenegraph/PKGBUILD +++ b/community/openscenegraph/PKGBUILD @@ -5,11 +5,11 @@ # Contributor: Colin Pitrat # ALARM: Kevin Mihelich -# - comment moving non-existent lib64 directory in package +# - move lib64 directory in package for aarch64 only pkgname=openscenegraph pkgver=3.6.3 -pkgrel=1 +pkgrel=1.1 pkgdesc='Open Source, high performance real-time graphics toolkit' url='http://www.openscenegraph.org' arch=('x86_64') @@ -38,7 +38,9 @@ package() { cd OpenSceneGraph-OpenSceneGraph-${pkgver} make -C build DESTDIR="${pkgdir}" install install -Dm 644 LICENSE.txt -t "${pkgdir}/usr/share/licenses/${pkgname}" - #mv "${pkgdir}/usr/lib64" "${pkgdir}/usr/lib" + if [[ $CARCH == "aarch64" ]]; then + mv "${pkgdir}/usr/lib64" "${pkgdir}/usr/lib" + fi } # vim: ts=2 sw=2 et: