Package Details: signalbackup-tools-git 20241106.1.r0.g242c983-1

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.000199
First Submitted: 2021-02-07 19:22 (UTC)
Last Updated: 2024-11-07 13:47 (UTC)

Dependencies (6)

Required by (0)

Sources (1)

Latest Comments

k1f0 commented on 2024-11-07 13:48 (UTC)

@hrehfeld just switched this to build with cmake, please retry

hrehfeld commented on 2024-11-06 13:38 (UTC)

Build fails with linker error undefined refs for me: https://gist.github.com/hrehfeld/d0dcf510615593af3803ca9196bb3c29

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