You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: appimage-bulder-scripts/README.md
+8Lines changed: 8 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -17,3 +17,11 @@ Try not to use [Archimage](https://github.com/ivan-hc/ArchImage), as build times
17
17
If your AppImage creation script requires specific dependencies, please let me know with a PR.
18
18
19
19
TIP, creating AppImage on the fly can take time and resources, depending on the complexity of the program being compiled. It is highly suggested to publish the AppImages to a repository, using Github Actions, [as I do](https://github.com/ivan-hc#my-appimage-packages).
20
+
21
+
### Syntax
22
+
try to use key commands at the beginning of the line, to allow the "install.am" module to determine whether a command not installed on the system is required by the Appimage assembly script. Fore example:
23
+
```
24
+
tar fx ...
25
+
ar x ...
26
+
```
27
+
to detect if "`tar`" and "`ar`" (from `binutils`) are needed.
Copy file name to clipboardExpand all lines: modules/install.am
+26-12Lines changed: 26 additions & 12 deletions
Original file line number
Diff line number
Diff line change
@@ -158,23 +158,37 @@ function _install_arg() {
158
158
echo -e " ⚠️ WARNING: \"$arg\" may not be updatable without \"zsync\".\n\n The app will still be installed, but installing \"zsync\" is recommended! \n"
0 commit comments