Some checks are pending
macos_build / macos_build (3.10) (push) Waiting to run
macos_build / macos_build (3.11) (push) Waiting to run
macos_build / macos_build (3.12) (push) Waiting to run
macos_build / macos_build (3.13) (push) Waiting to run
macos_build / macos_build (3.14) (push) Waiting to run
pyenv_tests / pyenv_tests (macos-14) (push) Waiting to run
pyenv_tests / pyenv_tests (macos-15) (push) Waiting to run
pyenv_tests / pyenv_tests (macos-15-intel) (push) Waiting to run
pyenv_tests / pyenv_tests (macos-26) (push) Waiting to run
pyenv_tests / pyenv_tests (ubuntu-22.04) (push) Waiting to run
pyenv_tests / pyenv_tests (ubuntu-24.04) (push) Waiting to run
ubuntu_build / ubuntu_build (3.10) (push) Waiting to run
ubuntu_build / ubuntu_build (3.11) (push) Waiting to run
ubuntu_build / ubuntu_build (3.12) (push) Waiting to run
ubuntu_build / ubuntu_build (3.13) (push) Waiting to run
ubuntu_build / ubuntu_build (3.14) (push) Waiting to run
27 lines
472 B
Bash
Executable File
27 lines
472 B
Bash
Executable File
#!/bin/sh
|
|
# Usage: PREFIX=/usr/local ./install.sh
|
|
#
|
|
# Installs python-build under $PREFIX.
|
|
|
|
set -e
|
|
|
|
cd "$(dirname "$0")"
|
|
|
|
if [ -z "${PREFIX}" ]; then
|
|
PREFIX="/usr/local"
|
|
fi
|
|
|
|
BIN_PATH="${PREFIX}/bin"
|
|
SHARE_PATH="${PREFIX}/share/python-build"
|
|
|
|
mkdir -p "$BIN_PATH" "$SHARE_PATH"
|
|
|
|
install -p bin/* "$BIN_PATH"
|
|
for share in share/python-build/*; do
|
|
if [ -d "$share" ]; then
|
|
cp -RPp "$share" "$SHARE_PATH"
|
|
else
|
|
install -p -m 0644 "$share" "$SHARE_PATH"
|
|
fi
|
|
done
|