Package Details: signalbackup-tools-git 20220914.1.r1.g3792949-2

Git Clone URL: https://aur.archlinux.org/signalbackup-tools-git.git (read-only, click to copy)
Package Base: signalbackup-tools-git
Description: Tool to work with Signal Backup files
Upstream URL: https://github.com/bepaald/signalbackup-tools
Licenses: GPL3
Provides: signalbackup-tools
Submitter: neitsab
Maintainer: k1f0
Last Packager: k1f0
Votes: 4
Popularity: 0.062028
First Submitted: 2021-02-07 19:22 (UTC)
Last Updated: 2022-10-08 23:52 (UTC)

Latest Comments

youngian commented on 2021-11-23 04:46 (UTC) (edited on 2021-11-23 04:46 (UTC) by youngian)

This was failing to build for me because it appears the build script has been checked into the source repo with incorrect permissions. I worked around the problem with a simple change:

diff --git a/PKGBUILD b/PKGBUILD
index f38be6e..48e90cf 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -21,7 +21,7 @@ pkgver() {

 build() {
        cd "$srcdir/${pkgname%-git}"
-       ./BUILDSCRIPT.sh
+       /bin/sh ./BUILDSCRIPT.sh
 }

 package() {