mirror of
https://github.com/morgan9e/UxPlay
synced 2026-04-14 00:04:13 +09:00
edited README
This commit is contained in:
@@ -26,7 +26,7 @@
|
||||
</ol>
|
||||
<p><em>If you intend to modify the code, use a separate “build” directory: replace</em> “<code>cmake [ ] .</code>” <em>by</em> “<code>mkdir build ; cd build ; cmake [ ] ..</code>”; <em>you can then clean out the build directory with</em> “<code>rm -rf *</code>” <em>(run from within the build directory, of course!) without out affecting the source directory which contains your modifications</em>.</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 since the original antimof version UxPlay-1.2. Older Linux 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> _If you cannot find a libplist-2.x package that installs on your older distribution, you can get it at <a href="https://github.com/libimobiledevice/libplist">https://github.com/libimobiledevice/libplist</a> and build it from source (you need build tools autoconf, automake, libtool, and may need to also install some libpython*-dev package). By default, libplist installs in /usr/local/lib. If this is not in the library path (as in ubuntu), create a file /etc/ld.so.conf.d/libplist.conf containing the text “/usr/local/lib”, and run “sudo ldconfig” to permanently add /usr/local/lib to the library path._</p>
|
||||
<p><strong>Note libplist-dev (version 2.0 or greater) is a new dependency (the original antimof version UxPlay-1.2 supplied it). Older Linux 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> If you cannot find a libplist-2.x package that installs on your older distribution, you can get it at <a href="https://github.com/libimobiledevice/libplist">https://github.com/libimobiledevice/libplist</a> and build it from source. _(You will need build tools autoconf, automake, libtool, and may need to also install some libpython*-dev package). By default, libplist installs in /usr/local/lib. If this is not in the library path (as in ubuntu), create a file /etc/ld.so.conf.d/libplist.conf containing the text “/usr/local/lib”, and run “sudo 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>
|
||||
<p><strong>OpenSUSE:</strong> (sudo zypper install) libopenssl-devel libplist-devel avahi-compat-mDNSResponder-devel (+ libX11-devel for ZOOMFIX). The required GStreamer packages are: gstreamer-devel gstreamer-plugins-base-devel gstreamer-plugins-libav gstreamer-plugins-bad (+ gstreamer-plugins-vaapi for Intel graphics).</p>
|
||||
<p><strong>FreeBSD:</strong> (sudo pkg install) libplist gstreamer1, gstreamer1-libav, gstreamer1-plugins, gstreamer1-plugins-* (* = core, good, bad, x, gtk, gl, vulkan, pulse …), (+ gstreamer1-vaapi for Intel graphics). Either avahi-libdns or mDNSResponder must also be installed to provide the dns_sd library. OpenSSL is already installed as a System Library. “ZOOMFIX” is untested; don’t try to use it on FreeBSD unless you need it.</p>
|
||||
|
||||
@@ -95,11 +95,11 @@ 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 since the original antimof version UxPlay-1.2. Older Linux
|
||||
**Note libplist-dev (version 2.0 or greater) is a new dependency (the original antimof version UxPlay-1.2 supplied it). Older Linux
|
||||
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.]**
|
||||
_If you cannot find a libplist-2.x package that installs on your older distribution, you can get it at
|
||||
[https://github.com/libimobiledevice/libplist](https://github.com/libimobiledevice/libplist) and build it from source
|
||||
(you need build tools autoconf, automake, libtool, and may need to also install some libpython*-dev package).
|
||||
If you cannot find a libplist-2.x package that installs on your older distribution, you can get it at
|
||||
[https://github.com/libimobiledevice/libplist](https://github.com/libimobiledevice/libplist) and build it from source.
|
||||
_(You will need build tools autoconf, automake, libtool, and may need to also install some libpython*-dev package).
|
||||
By default, libplist installs in /usr/local/lib. If this is not in the library path (as in ubuntu), create a
|
||||
file /etc/ld.so.conf.d/libplist.conf containing the text "/usr/local/lib", and run "sudo ldconfig" to permanently add /usr/local/lib to the library path._
|
||||
|
||||
|
||||
25
README.txt
25
README.txt
@@ -121,19 +121,18 @@ 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 since the original
|
||||
antimof version UxPlay-1.2. Older Linux 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.\]**
|
||||
\_If you cannot find a libplist-2.x package that installs on your older
|
||||
distribution, you can get it at
|
||||
<https://github.com/libimobiledevice/libplist> and build it from source
|
||||
(you need build tools autoconf, automake, libtool, and may need to also
|
||||
install some libpython\*-dev package). By default, libplist installs in
|
||||
/usr/local/lib. If this is not in the library path (as in ubuntu),
|
||||
create a file /etc/ld.so.conf.d/libplist.conf containing the text
|
||||
"/usr/local/lib", and run "sudo ldconfig" to permanently add
|
||||
**Note libplist-dev (version 2.0 or greater) is a new dependency (the
|
||||
original antimof version UxPlay-1.2 supplied it). Older Linux
|
||||
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.\]** If you cannot find a libplist-2.x package
|
||||
that installs on your older distribution, you can get it at
|
||||
<https://github.com/libimobiledevice/libplist> and build it from source.
|
||||
\_(You will need build tools autoconf, automake, libtool, and may need
|
||||
to also install some libpython\*-dev package). By default, libplist
|
||||
installs in /usr/local/lib. If this is not in the library path (as in
|
||||
ubuntu), create a file /etc/ld.so.conf.d/libplist.conf containing the
|
||||
text "/usr/local/lib", and run "sudo ldconfig" to permanently add
|
||||
/usr/local/lib to the library path.\_
|
||||
|
||||
**Red Hat, Fedora, CentOS:** (sudo yum install) openssl-devel
|
||||
|
||||
Reference in New Issue
Block a user