Package Details: localsend 1.16.1-1

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)

Required by (0)

Sources (1)

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 as flutter-engine (~/.cache/flutter-engine).

Latest Comments

1 2 3 4 Next › Last »

patlefort commented on 2024-07-09 08:28 (UTC)

It's working. You can keep the package, I'll just comment if there is a problem.

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?