mirror of
https://github.com/dankamongmen/notcurses
synced 2025-03-09 17:19:03 -04:00
python: prep to install with DESTDIR
This commit is contained in:
parent
447ca1f3b9
commit
adfbedf3ef
@ -546,6 +546,9 @@ write_basic_package_version_file(
|
||||
|
||||
# Python bindings
|
||||
if(${USE_PYTHON})
|
||||
# when we're building debs, we use pybuild to directly call into setup.py,
|
||||
# so none of this applies.
|
||||
if(NOT "${DFSG_BUILD}")
|
||||
find_package(Python3 COMPONENTS Development Interpreter REQUIRED)
|
||||
file(GLOB PYSRC CONFIGURE_DEPENDS python/src/notcurses/*.py)
|
||||
file(COPY python/src/ DESTINATION ${CMAKE_CURRENT_BINARY_DIR}/python/src)
|
||||
@ -576,6 +579,7 @@ if(${USE_PYTHON})
|
||||
WORKING_DIRECTORY
|
||||
${CMAKE_CURRENT_BINARY_DIR}/python
|
||||
)
|
||||
endif()
|
||||
endif()
|
||||
|
||||
# Rust bindings + colloquy
|
||||
@ -692,13 +696,19 @@ install(TARGETS notcurses notcurses-static
|
||||
)
|
||||
if(${USE_PYTHON})
|
||||
# if DFSG_BUILD has been selected, assume we're building debs. debian/rules
|
||||
# has its own python install logic after many hours wasted, so we don't
|
||||
# install from here for a deb build.
|
||||
# has its own python logic after many hours wasted, so we don't install from
|
||||
# here for a deb build.
|
||||
if(NOT "${DFSG_BUILD}")
|
||||
# --root both implies, and is required by, --single-external-package-managed
|
||||
# Arch makepkg sets it. if unset, use /
|
||||
set(PYROOT $ENV{DESTDIR})
|
||||
if(NOT PYROOT)
|
||||
set(PYROOT "/")
|
||||
endif()
|
||||
install(
|
||||
CODE "execute_process(
|
||||
COMMAND
|
||||
${Python3_EXECUTABLE} ${SETUP_PY} install --root=/ --prefix=${CMAKE_INSTALL_PREFIX} --optimize=1
|
||||
${Python3_EXECUTABLE} ${SETUP_PY} install --root=${PYROOT} --prefix=${CMAKE_INSTALL_PREFIX} --optimize=1
|
||||
WORKING_DIRECTORY
|
||||
${CMAKE_CURRENT_BINARY_DIR}/python
|
||||
)"
|
||||
|
Loading…
x
Reference in New Issue
Block a user