summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorarchibald8692024-05-06 22:28:52 +0200
committerarchibald8692024-05-06 22:28:52 +0200
commit583b6fbc0ddd630bafa285fc1ff3b1c4fe26946b (patch)
treef2dc354bd6dbee0aa7ef7efb64bcfe4dbee53491
parent5c416b9d1710a33a7af359197f8191465f87b798 (diff)
downloadaur-583b6fbc0ddd630bafa285fc1ff3b1c4fe26946b.tar.gz
Add `!debug` to options to prevent error when launching
> Installation files are corrupted. Please reinstall FreeFileSync. > Consistency check failed for "/opt/freefilesync/Bin/FreeFileSync_x86_64". > Error code 478674948: error:1C880004:Provider routines::RSA lib [EVP_DigestVerifyFinal]
-rw-r--r--.SRCINFO1
-rw-r--r--.gitignore1
-rw-r--r--Makefile2
-rw-r--r--PKGBUILD2
4 files changed, 4 insertions, 2 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 9713bdc2e9cb..b0bff2d0baa3 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -12,6 +12,7 @@ pkgbase = freefilesync-bin
provides = freefilesync
conflicts = freefilesync
options = !strip
+ options = !debug
source = dlagent
source = freefilesync-bin-13.5.tar.gz::https://freefilesync.org/download/FreeFileSync_13.5_Linux.tar.gz
sha256sums = 21ad62ebf8659bb49a27d1cb1ff29fb7073f206a0ebd4c44340a9afa2b7da218
diff --git a/.gitignore b/.gitignore
index ec9bcaab6f73..2aadf34dc2d2 100644
--- a/.gitignore
+++ b/.gitignore
@@ -3,4 +3,5 @@
/src/
*.tar.gz
*.tar.xz
+*.tar.zst
*.part
diff --git a/Makefile b/Makefile
index f3193d68bfd6..a2a4e1a6a860 100644
--- a/Makefile
+++ b/Makefile
@@ -14,7 +14,7 @@ install: build
makepkg -i
check: build
- namcap *.tar.xz
+ namcap *.pkg.tar.*
clean:
rm -rf build pkg src *.tar.* *.part
diff --git a/PKGBUILD b/PKGBUILD
index bfc0de3ab4e1..bb7ee4b3e3a0 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -28,7 +28,7 @@ sha256sums=(
"21ad62ebf8659bb49a27d1cb1ff29fb7073f206a0ebd4c44340a9afa2b7da218"
"90469e9f88d60b0aa2a725c7e4053961d8180b11d726bec63a78e4e7ec137dbe"
)
-options=(!strip)
+options=(!strip !debug)
install=".install"
DLAGENTS=("https::$PWD/dlagent $url %u %o")