Skip to content

Commit

Permalink
Add configurations to allow AppImages to complete builds.
Browse files Browse the repository at this point in the history
  • Loading branch information
freakboy3742 committed Sep 5, 2023
1 parent dba56d5 commit 55bcb70
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,8 @@ system_requires = [
"libcanberra-gtk3",
"PackageKit-gtk3-module",
"gvfs-client",
# Needed to compile Pillow
"libjpeg-devel",
]

linuxdeploy_plugins = [
Expand All @@ -92,6 +94,11 @@ dockerfile_extra_content = """
# Install Rust (required for cryptography)
RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
ENV PATH="/home/brutus/.cargo/bin:${PATH}"
# Set up C++ compiler (required for numpy)
ENV CXX="g++ -pthread"
ENV AR=ar
# Add a symlink for python->python3 (needed for pandas)
RUN ln -si /app/Testbed.AppDir/usr/python/bin/python3 /app/Testbed.AppDir/usr/python/bin/python
"""

# support_package = "../Python-linux-support/dist/Python-3.10-linux-x86_64-support.custom.tar.gz"
Expand Down

0 comments on commit 55bcb70

Please sign in to comment.