Files
MX_Pmodule/adxv/build
T

20 lines
503 B
Python
Executable File

#!/usr/bin/env modbuild
# Prebuilt single binary from adxv.scripps.edu (CentOS7 build, runs on RHEL8;
# needs system Motif/X11 libs at runtime). Default pbuild::prep downloads +
# sha-verifies + copies it into SRC_DIR (unpacker: none).
pbuild::configure() {
:
}
pbuild::compile() {
:
}
pbuild::install() {
mkdir -p "$PREFIX/bin"
install -m 755 "$SRC_DIR/adxv-${V_PKG}.x86_64CentOS7" "$PREFIX/bin/adxv" || \
std::die 42 "adxv binary missing from SRC_DIR - download failed?"
}