Skip to content

Commit

Permalink
documentation update
Browse files Browse the repository at this point in the history
  • Loading branch information
ddmitov committed Jun 16, 2018
1 parent 6e1cdb0 commit a545148
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
4 changes: 3 additions & 1 deletion CONSTANTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,9 @@ Perl Executing Browser - Constants

* **Data Directory:**
Data directory must contain any writable files used or produced by a PEB-based application.
The data directory path is ``{PEB_binary_directory}/resources/data`` or ``{AppImage_binary_directory}/resources/data`` if a PEB-based application is packed as an [AppImage](https://appimage.org/). Perl scripts can access this folder using the environment variable ``PEB_DATA_DIR``:
The data directory path is ``{PEB_binary_directory}/resources/data`` or ``{AppImage_binary_directory}/resources/data`` if a PEB-based application is packed as an [AppImage](https://appimage.org/).

Perl scripts can access this folder using the environment variable ``PEB_DATA_DIR``:

```perl
my $data_directory = $ENV{'PEB_DATA_DIR'};
Expand Down
5 changes: 4 additions & 1 deletion REQUIREMENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,11 +68,14 @@ All compile-time settings require editing the ``src/peb.pro`` project file accor
To make automatically a bundled binary (peb.app) use the [dmg-maker.sh](sdk/dmg-maker.sh) script by Valcho Nedelchev.

## Runtime Requirements
* Qt 5 libraries.
* Qt 5 libraries.

The ``ldd`` Linux command can show all dependencies of a PEB executable.

* Perl 5 distribution - any Linux, Mac or Windows Perl standard or relocatable distribution.

Tested successfully using the following Perl distributions:

Linux 64-bit [Perlbrew](https://perlbrew.pl/) Perl versions 5.18.4, 5.23.7
Linux 64-bit [Relocatable Perl](https://github.com/skaji/relocatable-perl) version 5.24.1
Windows 32-bit [Strawberry Perl](http://strawberryperl.com/) PortableZIP versions 5.12.2.0, 5.16.1.1, 5.20.2.1
Expand Down

0 comments on commit a545148

Please sign in to comment.