Package Details: barrier-headless-git v2.3.3+153+g12024b9a-1

Git Clone URL: https://aur.archlinux.org/barrier-headless-git.git (read-only, click to copy)
Package Base: barrier-headless-git
Description: Open-source KVM software based on Synergy (client and server CLI binaries)
Upstream URL: https://github.com/debauchee/barrier
Licenses: custom:GPL2WithOpenSSLException
Provides: barrier-headless
Submitter: tallero
Maintainer: tallero
Last Packager: tallero
Votes: 2
Popularity: 0.000000
First Submitted: 2019-08-03 22:11 (UTC)
Last Updated: 2021-02-04 06:38 (UTC)

Latest Comments

bobpaul commented on 2022-03-31 16:13 (UTC)

Please add conflicts and provides arrays to the PKGBUILD. This package conflicts and is a substitute for barrier-headless.

tallero commented on 2020-12-19 11:58 (UTC)

fixed

twol commented on 2020-12-18 14:28 (UTC) (edited on 2020-12-18 14:37 (UTC) by twol)

I managed to get it to work for me by adding

-D BARRIER_BUILD_TESTS:BOOL=OFF \

to the cmake command in the PKGBUILD

I presume googletest and googlemock are used for debugging purposes and are not important to getting the actual program up and running.

randomjerk commented on 2020-07-11 04:20 (UTC)

Hi. The build fails for me with the following errors:

CMake Error at src/test/CMakeLists.txt:23 (add_library): Cannot find source file:

../../ext/gtest/src/gtest-all.cc

CMake Error at src/test/CMakeLists.txt:24 (add_library): Cannot find source file:

../../ext/gmock/src/gmock-all.cc

Any ideas on how to fix this issue?

Lykos153 commented on 2020-06-30 12:42 (UTC)

Oh and the PKGBUILD still doesn't have

conflicts=(barrier-headless)

Lykos153 commented on 2020-06-30 12:35 (UTC) (edited on 2020-06-30 12:37 (UTC) by Lykos153)

Build fails with:

Cannot find source file:

    ../../ext/gmock/src/gmock-all.cc

and

Cannot find source file:

    ../../ext/gtest/src/gtest-all.cc

The PKGBUILD needs to checkout the submodules before building:

diff --git a/PKGBUILD b/PKGBUILD
index d8b2b23..04a28bc 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -36,6 +36,7 @@ makedepends=(

 prepare() {
     cd "barrier-headless-git"
+    git submodule update --init --recursive

     for patch in "${srcdir?}"/*.patch; do
         if [ -f "${patch?}" ]; then

tallero commented on 2020-06-06 20:42 (UTC)

@Xandaros: I forgot to update the .SCRINFO but that was already solved into the PKGBUILD.

Xandaros commented on 2020-06-06 20:39 (UTC)

provides and conflicts with "barrier". Shouldn't this be "barrier-headless"?

Berengal commented on 2019-11-03 08:16 (UTC)

Can you add 'armv7h' to the 'arch' field please? I built and tested this on a raspberry pi 4 running archlinuxarm and it works just fine.