mirror of
https://github.com/pyenv/pyenv.git
synced 2024-11-07 20:31:01 -05:00
26 lines
472 B
Bash
Executable file
26 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
|