mirror of
https://github.com/revng/revng
synced 2026-06-21 14:07:57 +00:00
942cf50735
Package revng's python code in two wheels: `revng` and `revng_internal`.
The revng wheel contains the
`revng.{pipeline_description,model,tupletree}` modules, while the
`revng_internal` one everything under `revng.internal`.
16 lines
309 B
Bash
Executable File
16 lines
309 B
Bash
Executable File
#!/bin/bash
|
|
#
|
|
# This file is distributed under the MIT License. See LICENSE.md for details.
|
|
#
|
|
set -euo pipefail
|
|
|
|
python -m pip install \
|
|
--quiet \
|
|
--compile \
|
|
--no-index \
|
|
--no-build-isolation \
|
|
--ignore-installed \
|
|
--no-deps \
|
|
--root "$DESTDIR" \
|
|
"$1"
|