edited README

This commit is contained in:
fduncanh
2021-10-09 06:24:09 -04:00
parent ffa65ed84e
commit 8c86e52ad3
3 changed files with 7 additions and 5 deletions

View File

@@ -19,7 +19,7 @@
<li><code>sudo make install</code> (you can afterwards uninstall with <code>sudo make uninstall</code> in the same directory in which this was run)</li>
</ol>
<p><em>Note that older cmake does not require the final “<code>.</code>” to specify the current directory as the source directory, but newer cmake requires it. If you intend to modify the code, use a separate “build” directory: replace “cmake [ ] .” by “mkdir build ; cd build ; cmake [ ] ..”; you can then get back to the clean source (with any changes you made) with “cd .. ; rm -rf build”.</em></p>
<p>The above script installs the executable file “<code>uxplay</code>” to <code>/usr/local/bin</code>, (and installs a manpage and README files) It can also be found in the build directory after the build processs. Run uxplay in a terminal window.</p>
<p>The above script installs the executable file “<code>uxplay</code>” to <code>/usr/local/bin</code>, (and installs a manpage to <code>/usr/local/man/man1</code> and README files to <code>/usr/local/share/doc/uxplay</code>). It can also be found in the build directory after the build processs. Run uxplay in a terminal window.</p>
<p><strong>Note libplist-dev (which must be for libplist version 2.0 or greater) and (for ZOOMFIX) libx11-dev are new dependencies. Older distributions may only supply libplist 1.x, which is too old. [Installing libplist-dev (with libplist3) from ubuntu 18.04 solves this problem on ubuntu 16.04.]</strong></p>
<p>_If you cannot find a libplist-2.x package that installs on your older distribution, and you dont wish to upgrade, see the instructions below (in the macOS section) on building libplist from source (you need autoconf, automake, libtool, and may need to also install some libpython*-dev package) but (unlike the statically-linked macOS case) do not uninstall the libplist library after building uxplay; it must remain installed. It is in /usr/local/lib. If uxplay fails to find libplist when you run it, this is probably because /usr/local/lib is not in the library path (by default, this is the case in ubuntu). To fix this, run “sudo ldconfig” (you might also need to create a file /etc/ld.so.conf.d/libplist.conf containing the text “/usr/local/lib” before running ldconfig) to permanently add /usr/local/lib to the library path._</p>
<p><strong>Red Hat, Fedora, CentOS:</strong> (sudo yum install) openssl-devel libplist-devel avahi-compat-libdns_sd-devel (+libX11-devel for ZOOMFIX). The required GStreamer packages are: gstreamer1-devel gstreamer1-plugins-base-devel gstreamer1-libav gstreamer1-plugins-bad-free ( + gstreamer1-vaapi for intel graphics).</p>

View File

@@ -66,7 +66,8 @@ Zoom, see below).
_Note that older cmake does not require the final "`.`" to specify the current directory as the source directory,
but newer cmake requires it. If you intend to modify the code, use a separate "build" directory: replace "cmake [ ] ." by "mkdir build ; cd build ; cmake [ ] .."; you can then get back to the clean source (with any changes you made) with "cd .. ; rm -rf build"._
The above script installs the executable file "`uxplay`" to `/usr/local/bin`, (and installs a manpage and README files)
The above script installs the executable file "`uxplay`" to `/usr/local/bin`, (and installs a manpage to `/usr/local/man/man1` and README
files to `/usr/local/share/doc/uxplay`).
It can also be found in the build directory after the build
processs. Run uxplay in a terminal window.

View File

@@ -87,9 +87,10 @@ you can then get back to the clean source (with any changes you made)
with "cd .. ; rm -rf build".*
The above script installs the executable file "`uxplay`" to
`/usr/local/bin`, (and installs a manpage and README files) It can also
be found in the build directory after the build processs. Run uxplay in
a terminal window.
`/usr/local/bin`, (and installs a manpage to `/usr/local/man/man1` and
README files to `/usr/local/share/doc/uxplay`). It can also be found in
the build directory after the build processs. Run uxplay in a terminal
window.
**Note libplist-dev (which must be for libplist version 2.0 or greater)
and (for ZOOMFIX) libx11-dev are new dependencies. Older distributions