Package Details: soapyremote-git 0.2.0.r0.g71f7183-1

Git Clone URL: https://aur.archlinux.org/soapyremote-git.git (read-only, click to copy)
Package Base: soapyremote-git
Description: Use any Soapy SDR remotely
Upstream URL: https://github.com/pothosware/SoapyRemote
Licenses: custom:Boost Software License Version 1.0
Provides: soapyremote
Submitter: viraptor
Maintainer: viraptor
Last Packager: viraptor
Votes: 8
Popularity: 0.000000
First Submitted: 2016-02-27 03:32 (UTC)
Last Updated: 2016-02-27 04:07 (UTC)

Dependencies (2)

Required by (4)

Sources (1)

Latest Comments

kerel commented on 2020-10-31 18:36 (UTC)

Patch fixing the installation based on dlaw's comment:

From d6a3ebe7aec1b253109f24f34c5a5d043bfe9bbd Mon Sep 17 00:00:00 2001
From: "Fabian P. Schmidt" <kerel@mailbox.org>
Date: Sat, 31 Oct 2020 19:28:08 +0100
Subject: [PATCH] Fix install by moving install path /lib to /usr/lib

dlaw wrote in AUR comment:
"Installation fails because ${pkgdir}/lib exists.
(In the filesystem, /lib is a symbolic link to /usr/lib and
packages must install libraries directly to /usr/lib.)

The solution is to move ${pkgdir}/lib to ${pkgdir}/usr/lib just
after the call to "make install"."
---
 PKGBUILD | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/PKGBUILD b/PKGBUILD
index 9e7a690..2c27232 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -28,4 +28,6 @@ pkgver() {
 package() {
        make -C "${srcdir}/${pkgname}/build" DESTDIR="${pkgdir}" install
        install -D -t "$pkgdir/usr/share/licenses/${pkgname}/" "${srcdir}/${pkgname}/LICENSE_1_0.txt"
+       mv "${pkgdir}/lib/systemd" "${pkgdir}/usr/lib/"
+       rmdir "${pkgdir}/lib"
 }
-- 
2.29.2

dlaw commented on 2019-10-27 01:05 (UTC)

Installation fails because ${pkgdir}/lib exists. (In the filesystem, /lib is a symbolic link to /usr/lib and packages must install libraries directly to /usr/lib.) The solution is to move ${pkgdir}/lib to ${pkgdir}/usr/lib just after the call to "make install".