It's working. You can keep the package, I'll just comment if there is a problem.
Search Criteria
Package Details: localsend 1.16.1-1
Package Actions
Git Clone URL: | https://aur.archlinux.org/localsend.git (read-only, click to copy) |
---|---|
Package Base: | localsend |
Description: | An open source cross-platform alternative to AirDrop |
Upstream URL: | https://github.com/localsend/localsend |
Licenses: | MIT |
Submitter: | patlefort |
Maintainer: | xiota |
Last Packager: | xiota |
Votes: | 13 |
Popularity: | 0.64 |
First Submitted: | 2023-03-31 12:58 (UTC) |
Last Updated: | 2024-11-05 20:22 (UTC) |
Dependencies (10)
- libayatana-appindicator
- clang (llvm-rocm-gitAUR, llvm-gitAUR, clang-minimal-gitAUR) (make)
- cmake (cmake-gitAUR) (make)
- fvmAUR (fvm-gitAUR, fvm-sourcebuildAUR, fvm-binAUR) (make)
- git (git-gitAUR, git-glAUR) (make)
- lld (llvm-rocm-gitAUR, llvm-gitAUR) (make)
- llvm (llvm-rocm-gitAUR, llvm-gitAUR, llvm-minimal-gitAUR) (make)
- ninja (ninja-kitwareAUR, ninja-memAUR, ninja-fuchsia-gitAUR, ninja-gitAUR, ninja-jobserverAUR) (make)
- patchelf (patchelf-gitAUR) (make)
- rustup (rustup-gitAUR) (make)
Required by (0)
Sources (1)
patlefort commented on 2024-07-09 08:28 (UTC)
xiota commented on 2024-07-09 03:02 (UTC)
@patlefort To confirm, it is compatible with fvm
as used in this package? Would you like to be added back as comaintainer?
patlefort commented on 2024-07-09 02:46 (UTC)
I've created a package fvm-sourcebuild
for those who want to build the engine from sources. It will cache build artifacts in the same place as flutter-engine
(~/.cache/flutter-engine
).
vaygr commented on 2024-07-07 14:59 (UTC)
After the last upgrade this segfaults for me with: Error while initializing the Dart VM: Invalid vm isolate snapshot seen
. The following patch as seen in other Dart-based packages from Alpine fixes it:
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -59,6 +59,9 @@ package() {
# runpath
patchelf --force-rpath --set-rpath "/$_install_path/$_pkgname/lib" "$pkgdir/$_install_path/$_pkgname/$_pkgname"
for i in "$pkgdir/$_install_path/$_pkgname/lib"/*.so; do
+ # Fix: Error while initializing the Dart VM: Invalid vm isolate snapshot seen
+ [ "$(basename "$i")" != "libapp.so" ] || continue
+
patchelf --force-rpath --set-rpath "/$_install_path/$_pkgname/lib" "$i"
done
Xabre commented on 2024-07-07 07:02 (UTC)
@xiota thanks, works now
xiota commented on 2024-07-06 08:17 (UTC)
@Xabre fvm
manages flutter versions. Different versions of flutter use a different option (--disable-analytics
/ --disable-telemetry
). I changed it to the wrong one. Should be fixed now.
Xabre commented on 2024-07-06 06:30 (UTC) (edited on 2024-07-06 06:46 (UTC) by Xabre)
✓ Project now uses Flutter SDK : SDK Version : 3.13.9 Could not find an option named "disable-analytics".
Run 'flutter -h' (or 'flutter <command> -h') for available flutter commands and options. ==> ERROR: A failure occurred in build(). Aborting...
Please advise?
Edit: Right, missing makedepends=('flutter')
patlefort commented on 2024-07-06 00:35 (UTC)
Do you want me to do the same with hacki
, convertall
and python-flet
?
Pinned Comments
patlefort commented on 2024-07-09 02:46 (UTC)
I've created a package
fvm-sourcebuild
for those who want to build the engine from sources. It will cache build artifacts in the same place asflutter-engine
(~/.cache/flutter-engine
).