Search Criteria
Package Details: sqlar-fossil 0ab1c6f50f-1
Package Actions
Git Clone URL: | https://aur.archlinux.org/sqlar-fossil.git (read-only, click to copy) |
---|---|
Package Base: | sqlar-fossil |
Description: | Compressed archives in SQLite databases, including a fuse filesystem |
Upstream URL: | https://sqlite.org/sqlar/doc/trunk/README.md |
Licenses: | Public Domain |
Conflicts: | sqlar |
Provides: | sqlar |
Submitter: | ido50 |
Maintainer: | ido50 |
Last Packager: | ido50 |
Votes: | 2 |
Popularity: | 0.000004 |
First Submitted: | 2021-04-08 11:39 (UTC) |
Last Updated: | 2024-09-17 02:26 (UTC) |
Dependencies (5)
- fossil (fossil-fossilAUR) (make)
- fuse3 (fuse3-gitAUR) (make)
- gcc (gcc-gitAUR, gccrs-gitAUR, gcc11AUR, gcc-snapshotAUR) (make)
- glibc (glibc-gitAUR, glibc-linux4AUR, glibc-eacAUR, glibc-eac-binAUR, glibc-eac-rocoAUR) (make)
- make (make-gitAUR) (make)
Latest Comments
ido50 commented on 2024-09-17 02:27 (UTC)
Thanks a lot sorcix, fixed and pushed.
sorcix commented on 2024-09-16 12:16 (UTC)
When building in a clean chroot, this fails with:
Adding
--user anonymous
to the clone command in PKGBUILD fixes it.Next error was:
Adding
fuse2
to makedepends in PKGBUILD fixed this one.ido50 commented on 2023-10-03 10:09 (UTC)
Thanks a lot, fixed and updated.
paulieg commented on 2023-10-03 02:22 (UTC) (edited on 2023-10-03 02:24 (UTC) by paulieg)
This fails to compile with the included sqlite3.c amalgamation with current gcc:
Generally speaking, people have been fixing this by using the sqlite3.c amalgamation produced by
make sqlite3.c
from the main repo. However, this would complicate the PKGBUILD as written, so here's a better solution.Add the following to the value of
CFLAGS
in thebuild()
stage:The latter two are not strictly necessary, but it turns on optimisation which is inexplicably turned off and silences a spurious warning resulting from it.