Package Details: stremio 4.4.168-2

Git Clone URL: https://aur.archlinux.org/stremio.git (read-only, click to copy)
Package Base: stremio
Description: A one-stop hub for video content aggregation (Movies, TV shows, series, live television or web channels)
Upstream URL: https://www.stremio.com/
Licenses: GPL-3.0-only
Submitter: dbermond
Maintainer: dbermond
Last Packager: dbermond
Votes: 61
Popularity: 2.68
First Submitted: 2019-06-01 18:13 (UTC)
Last Updated: 2024-08-03 21:03 (UTC)

Latest Comments

« First ‹ Previous 1 2 3 4 5 6 7 8 9 10 11 .. 14 Next › Last »

fahimscirex commented on 2022-11-09 16:10 (UTC)

Install the project...
-- Install configuration: "Release"
-- Installing: /mnt/Data/.cache/yay-build-fahim/stremio-beta/pkg/stremio-beta/opt/stremio/stremio
make[1]: Leaving directory '/mnt/Data/.cache/yay-build-fahim/stremio-beta/src/stremio/build'
install -Dm 644 server.js "/mnt/Data/.cache/yay-build-fahim/stremio-beta/pkg/stremio-beta/opt/stremio/server.js"
install -Dm 644 smartcode-stremio.desktop "/mnt/Data/.cache/yay-build-fahim/stremio-beta/pkg/stremio-beta/opt/stremio/smartcode-stremio.desktop"
cp -r icons "/mnt/Data/.cache/yay-build-fahim/stremio-beta/pkg/stremio-beta/opt/stremio/"
ln -s "" "/mnt/Data/.cache/yay-build-fahim/stremio-beta/pkg/stremio-beta/opt/stremio/node"
ln: failed to create symbolic link '/mnt/Data/.cache/yay-build-fahim/stremio-beta/pkg/stremio-beta/opt/stremio/node' -> '': No such file or directory
make: *** [release.makefile:18: install] Error 1
==> ERROR: A failure occurred in package().
    Aborting...

otuva commented on 2022-11-05 15:15 (UTC) (edited on 2022-11-06 06:14 (UTC) by otuva)

OpenSSL got an update and if you re-build it'll fail as mentioned in a comment below. Until upstream gets patched, if anyone wants to install they can use openssl-1.1 which provides libcrypto.so.1.1

stremio: error while loading shared libraries: libcrypto.so.1.1: cannot open shared object file: No such file or directory

@dbermond can you update pkgbuild please

s0me-1 commented on 2022-10-24 20:01 (UTC) (edited on 2022-10-24 20:04 (UTC) by s0me-1)

Currently broken due to a recent git security update (details here):

Cloning into '/home/user/.cache/yay/stremio/src/stremio-shell/deps/chroma'...
fatal: transport 'file' not allowed
fatal: clone of '/home/user/.cache/yay/stremio/src/razerchroma' into submodule path '/home/user/.cache/yay/stremio/src/stremio-shell/deps/chroma' failed
Failed to clone 'deps/chroma'. Retry scheduled
Cloning into '/home/user/.cache/yay/stremio/src/stremio-shell/deps/libmpv'...
fatal: transport 'file' not allowed
fatal: clone of '/home/user/.cache/yay/stremio/src/libmpv' into submodule path '/home/user/.cache/yay/stremio/src/stremio-shell/deps/libmpv' failed
Failed to clone 'deps/libmpv'. Retry scheduled
Cloning into '/home/user/.cache/yay/stremio/src/stremio-shell/deps/singleapplication'...
fatal: transport 'file' not allowed
fatal: clone of '/home/user/.cache/yay/stremio/src/SingleApplication' into submodule path '/home/user/.cache/yay/stremio/src/stremio-shell/deps/singleapplication' failed
Failed to clone 'deps/singleapplication'. Retry scheduled
Cloning into '/home/user/.cache/yay/stremio/src/stremio-shell/deps/chroma'...
fatal: transport 'file' not allowed
fatal: clone of '/home/user/.cache/yay/stremio/src/razerchroma' into submodule path '/home/user/.cache/yay/stremio/src/stremio-shell/deps/chroma' failed
Failed to clone 'deps/chroma' a second time, aborting

Workaround is to downgrade git

malcolm commented on 2022-09-10 20:49 (UTC)

how is it possible to pass some argument to mpv? the mpris plugin is currently not working

dbermond commented on 2022-07-07 19:30 (UTC)

@ulgens When upstream supports the current nodejs version.

ulgens commented on 2022-07-07 06:15 (UTC)

@dbermond Any plan to replace nodejs-lts-gallium with nodejs?

robvelor commented on 2022-05-22 03:22 (UTC)

@TaylanTatli Thanks that works.

alexjorgef commented on 2022-05-20 15:39 (UTC)

@TaylanTatli I confirm that the patch solves the issue. I really appreciate your time, thank you

TaylanTatli commented on 2022-05-19 13:51 (UTC)

@alexjorgef You can use this patch.

diff --git a/PKGBUILD b/PKGBUILD
index a6fb7a8..9a62873 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -7,7 +7,7 @@ pkgdesc='A one-stop hub for video content aggregation (Movies, TV shows, series,
 arch=('x86_64')
 url='https://www.stremio.com/'
 license=('GPL3')
-depends=('mpv' 'nodejs-lts-gallium' 'openssl' 'qt5-webengine' 'qt5-base' 'qt5-declarative'
+depends=('mpv' 'nodejs' 'openssl' 'qt5-webengine' 'qt5-base' 'qt5-declarative'
           'qt5-quickcontrols' 'qt5-quickcontrols2' 'qt5-translations' 'qt5-webchannel')
 makedepends=('git' 'cmake' 'librsvg')
 source=("git+https://github.com/Stremio/stremio-shell.git#tag=v${pkgver}"
@@ -35,6 +35,7 @@ prepare() {
     # do not download server.js during 'make'
     ln -s "../stremio-${pkgver}-server.js" stremio-shell/server.js
     patch -d stremio-shell -Np1 -i "${srcdir}/010-stremio-do-not-download-server-js.patch"
+    sed -i 's/details.family.toLowerCase()/details.family.toString().toLowerCase()/g' ${srcdir}/stremio-${pkgver}-server.js
 }

 build() {