mirror of
https://github.com/moraroy/NonSteamLaunchers-On-Steam-Deck.git
synced 2024-11-20 08:09:18 +01:00
Attempt to use new VDF module instead of setup tools
This commit is contained in:
parent
9e15ba4d10
commit
449a5a2ff9
@ -2617,35 +2617,15 @@ download_dir=~/Downloads/NonSteamLaunchersInstallation
|
|||||||
# Create the download directory if it doesn't exist
|
# Create the download directory if it doesn't exist
|
||||||
mkdir -p "$download_dir"
|
mkdir -p "$download_dir"
|
||||||
|
|
||||||
# Check if setuptools is already installed
|
# Download the vdf module from the GitHub repository
|
||||||
if ! python3 -c "import setuptools" &> /dev/null; then
|
download_url="https://github.com/moraroy/NonSteamLaunchers-On-Steam-Deck/raw/main/Modules/vdf/__init__.py"
|
||||||
# Download the latest version of setuptools from the Python Package Index
|
|
||||||
download_url="https://files.pythonhosted.org/packages/03/20/630783571e76e5fa5f3e9f29398ca3ace377207b8196b54e0ffdf09f12c1/setuptools-67.8.0.tar.gz"
|
|
||||||
wget -P "$download_dir" "$download_url"
|
|
||||||
|
|
||||||
# Extract the downloaded tar.gz file
|
|
||||||
tar -xvf "$download_dir/setuptools-67.8.0.tar.gz" -C "$download_dir"
|
|
||||||
|
|
||||||
# Change to the extracted directory
|
|
||||||
cd "$download_dir/setuptools-67.8.0"
|
|
||||||
|
|
||||||
# Install setuptools in a custom location
|
|
||||||
python3 setup.py install --prefix="$download_dir"
|
|
||||||
fi
|
|
||||||
|
|
||||||
|
|
||||||
# Download extended-setup-tools from the Python Package Index
|
|
||||||
download_url="https://files.pythonhosted.org/packages/d2/a0/979ab67627f03da03eff3bc9d01c2969d89e33175764cdd5ec15a44efe50/extended-setup-tools-0.1.8.tar.gz"
|
|
||||||
wget -P "$download_dir" "$download_url"
|
wget -P "$download_dir" "$download_url"
|
||||||
|
|
||||||
# Extract the downloaded tar.gz file
|
# Create a directory for the vdf module
|
||||||
tar -xvf "$download_dir"/extended-setup-tools-*.tar.gz -C "$download_dir"
|
mkdir -p "$download_dir/lib/python$python_version/site-packages/vdf"
|
||||||
|
|
||||||
# Change to the extracted directory
|
# Move the downloaded file to the vdf module directory
|
||||||
cd "$download_dir"/extended-setup-tools-*/
|
mv "$download_dir"/__init__.py "$download_dir/lib/python$python_version/site-packages/vdf/__init__.py"
|
||||||
|
|
||||||
# Install extended-setup-tools in a custom location
|
|
||||||
python3 setup.py install --prefix="$download_dir"
|
|
||||||
|
|
||||||
# Get the version of Python being used
|
# Get the version of Python being used
|
||||||
python_version=$(python -c 'import sys; print(f"{sys.version_info.major}.{sys.version_info.minor}")')
|
python_version=$(python -c 'import sys; print(f"{sys.version_info.major}.{sys.version_info.minor}")')
|
||||||
@ -2657,43 +2637,6 @@ export PYTHONPATH="$download_dir/lib/python$python_version/site-packages:$PYTHON
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
# Set the download directory
|
|
||||||
download_dir=~/Downloads/NonSteamLaunchersInstallation
|
|
||||||
|
|
||||||
# Create the download directory if it doesn't exist
|
|
||||||
mkdir -p "$download_dir"
|
|
||||||
|
|
||||||
# Download the python-vdf library from GitHub
|
|
||||||
download_url="https://github.com/ValvePython/vdf/archive/refs/heads/master.zip"
|
|
||||||
wget -P "$download_dir" "$download_url"
|
|
||||||
|
|
||||||
# Extract the downloaded zip file
|
|
||||||
unzip "$download_dir"/master.zip -d "$download_dir" > /dev/null
|
|
||||||
|
|
||||||
# Move the extracted files to the desired location
|
|
||||||
mv "$download_dir"/vdf-master/* "$download_dir"
|
|
||||||
|
|
||||||
# Set the download directory
|
|
||||||
download_dir=~/Downloads/NonSteamLaunchersInstallation
|
|
||||||
|
|
||||||
# Change to the extracted directory
|
|
||||||
cd "$download_dir"
|
|
||||||
|
|
||||||
# Install the vdf library in a custom location
|
|
||||||
python3 setup.py install --prefix="$download_dir"
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# Get the version of Python being used
|
|
||||||
python_version=$(python -c 'import sys; print(f"{sys.version_info.major}.{sys.version_info.minor}")')
|
|
||||||
|
|
||||||
# Set the PYTHONPATH environment variable
|
|
||||||
export PYTHONPATH="$download_dir/lib/python$python_version/site-packages:$PYTHONPATH"
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# Set the default Steam directory
|
# Set the default Steam directory
|
||||||
steam_dir="$HOME/.local/share/Steam"
|
steam_dir="$HOME/.local/share/Steam"
|
||||||
|
Loading…
Reference in New Issue
Block a user