File tree 3 files changed +15
-10
lines changed
resources/app/perl-scripts
3 files changed +15
-10
lines changed Original file line number Diff line number Diff line change 1
1
archive /
2
2
build-peb- * /
3
3
resources /app /perl
4
+ squashfs-root
4
5
src /tmp
5
6
6
7
.qmake.stash
@@ -11,6 +12,7 @@ peb.pro.*
11
12
peb
12
13
peb.exe
13
14
* .AppImage
15
+ * .zip
14
16
15
17
backup
16
18
upgit
Original file line number Diff line number Diff line change @@ -54,17 +54,17 @@ in the documentation of this project are to be interpreted as described in [RFC
54
54
55
55
64-bit Linux:
56
56
``` bash
57
- peb-demo-xx .AppImage --appimage-extract
57
+ ./ peb-demo-* .AppImage --appimage-extract
58
58
```
59
59
60
- Windows:
60
+ Windows:
61
61
Unzip using any Windows unzip utility.
62
62
63
63
* ** 3.** Optionally install any CPAN modules you may need:
64
64
65
- 64-bit Linux - from the extracted `` peb-demo `` directory :
65
+ 64-bit Linux:
66
66
``` bash
67
- cd resources/app/perl/bin
67
+ cd squashfs-root/ resources/app/perl/bin
68
68
./perl ./cpanm YourModule
69
69
```
70
70
@@ -87,14 +87,17 @@ in the documentation of this project are to be interpreted as described in [RFC
87
87
Start local Perl scripts by [ clicking a link or submitting a form to a special URL] ( ./doc/SETTINGS.md#perl-scripts-api ) .
88
88
[ Select files or folders with their full paths by clicking a link to a special URL] ( ./doc/SETTINGS.md#selecting-files-and-folders ) .
89
89
90
- * ** 6.** Optionally pack your application:
90
+ * ** 6.** Optionally change the [ PEB AppImage configuration files] ( ./doc/APPIMAGE.md#peb-appimage-configuration-files ) .
91
+
92
+ * ** 7.** Optionally pack your application:
91
93
92
- 64-bit Linux - from the extracted `` peb-demo `` directory:
94
+ 64-bit Linux - from the extracted `` squashfs-root `` directory:
93
95
``` bash
94
- ./appimager.sh
96
+ export VERSION= " X.X.X " && ./appimager.sh
95
97
```
98
+ The resulting AppImage will be produced in the `` squashfs-root `` directory.
96
99
97
- Windows:
100
+ Windows:
98
101
Zip your PEB-based application using any Windows zip utility.
99
102
100
103
## Design Objectives
Original file line number Diff line number Diff line change 21
21
my $directory_name = <STDIN >;
22
22
chomp $directory_name ;
23
23
24
- my $files ;
25
- my $subdirectories ;
24
+ my $files = 0 ;
25
+ my $subdirectories = 0 ;
26
26
27
27
traverse ($directory_name );
28
28
You can’t perform that action at this time.
0 commit comments