Skip to content

Commit

Permalink
rmfm: Add path fix as mentioned in toltec-dev#619 (toltec-dev#620)
Browse files Browse the repository at this point in the history
* Add path fix as mentioned in toltec-dev#619

* Fix patch problems and bump version
  • Loading branch information
LinusCDE authored and RobotCaleb committed Sep 26, 2022
1 parent 8e228d6 commit 96ab6d1
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 3 deletions.
19 changes: 16 additions & 3 deletions package/rmfm/package
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,28 @@
pkgnames=(rmfm)
pkgdesc="Bare-bones file manager using Node.js and sas"
url="https://codeberg.org/sun/rmFM"
pkgver=1.4.0-1
pkgver=1.4.0-2
timestamp=2022-08-19T11:20:10+02:00
section=utils
maintainer="Sunny <[email protected]>"
license=MIT
installdepends=(node simple)

source=(https://codeberg.org/sun/rmFM/archive/1.4.0.zip)
sha256sums=(28ce80c67fecc370d11f3fe2069742c2789b388a9426fff49d269d7900ae3dc9)
source=(
https://codeberg.org/sun/rmFM/archive/1.4.0.zip
path_fix.patch
)
sha256sums=(
28ce80c67fecc370d11f3fe2069742c2789b388a9426fff49d269d7900ae3dc9
SKIP
)

prepare() {
# Assume node to be in /opt/bin and add that directory
# to the path of the app to allow finding simple
# This is a temporary fix for not working in remux
patch -d "$srcdir" < "$srcdir"/path_fix.patch
}

package() {
install -D -m 755 "$srcdir"/rmfm "$pkgdir"/opt/bin/rmfm
Expand Down
9 changes: 9 additions & 0 deletions package/rmfm/path_fix.patch
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
diff --git a/rmfm b/rmfm
index 4571db9..172eedf 100755
--- a/rmfm
+++ b/rmfm
@@ -1,2 +1,3 @@
-#!/usr/bin/env node
+#!/opt/bin/node
+process.env.PATH += ":/opt/bin"

0 comments on commit 96ab6d1

Please sign in to comment.