Package Details: signalbackup-tools-git 20240910.r0.g1543540-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.002203
First Submitted: 2021-02-07 19:22 (UTC)
Last Updated: 2024-09-15 15:20 (UTC)

Dependencies (5)

Required by (0)

Sources (1)

Latest Comments

k1f0 commented on 2024-09-15 15:21 (UTC)

@bepaald thanks, fixed.

bepaald commented on 2024-09-12 11:42 (UTC)

Hi! Thanks for maintaining this package! Note, unless the package actually uses cmake to build the program (which it currently does not), there is no dependency on cmake, so it could be removed from the makedepends.

Thanks!

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() {