Lines Matching +full:hardcode +full:- +full:script
3 .. _using-on-unix:
16 --------
29 https://www.debian.org/doc/manuals/maint-guide/first.en.html
33 https://docs.fedoraproject.org/en-US/package-maintainers/Packaging_Tutorial_GNU_Hello/
35 https://slackbook.org/html/package-management-making-packages.html
40 ----------------------
48 pkg_add -r python
50 …pkg_add ftp://ftp.openbsd.org/pub/OpenBSD/4.2/packages/<insert your architecture here>/python-<ver…
54 pkg_add ftp://ftp.openbsd.org/pub/OpenBSD/4.2/packages/i386/python-2.5.1p2.tgz
57 .. _building-python-on-unix:
65 <https://devguide.python.org/setup/#get-the-source-code>`_. (If you want
74 :ref:`Configuration options <configure-options>` and caveats for specific Unix
85 Python-related paths and files
89 :option:`prefix <--prefix>` and :option:`exec_prefix <--exec-prefix>`
90 are installation-dependent and should be interpreted as for GNU software; they
95 +-----------------------------------------------+------------------------------------------+
99 +-----------------------------------------------+------------------------------------------+
102 +-----------------------------------------------+------------------------------------------+
107 +-----------------------------------------------+------------------------------------------+
116 .. code-block:: shell-session
118 $ chmod +x script
120 and put an appropriate Shebang line at the top of the script. A good choice is
126 some Unices may not have the :program:`env` command, so you may need to hardcode
142 .. code-block:: shell-session
144 $ find /etc/ -name openssl.cnf -printf "%h\n"
151 .. code-block:: shell-session
153 $ curl -O https://www.openssl.org/source/openssl-VERSION.tar.gz
154 $ tar xzf openssl-VERSION
155 $ pushd openssl-VERSION
157 --prefix=/usr/local/custom-openssl \
158 --libdir=lib \
159 --openssldir=/etc/ssl
160 $ make -j1 depend
161 $ make -j8
166 (see the configure ``--with-openssl`` and ``--with-openssl-rpath`` options)
168 .. code-block:: shell-session
170 $ pushd python-3.x.x
171 $ ./configure -C \
172 --with-openssl=/usr/local/custom-openssl \
173 --with-openssl-rpath=auto \
174 --prefix=/usr/local/python-3.x.x
175 $ make -j8