33 lines
1.0 KiB
Plaintext
Executable File
33 lines
1.0 KiB
Plaintext
Executable File
#!/usr/bin/env modbuild
|
|
|
|
pbuild::add_to_group 'Tools'
|
|
pbuild::set_download_url https://github.com/paulscherrerinstitute/scicat-cli/releases/download/v${V_PKG}/scicat-cli_.${V_PKG}_Linux_x86_64.tar.gz
|
|
|
|
pbuild::post_prep() {
|
|
# PModules 1.0.0 fails on tar bundles without top-level directories. This
|
|
# tries to work around this. It could be removed if the cli release process
|
|
# changes (https://github.com/paulscherrerinstitute/scicat-cli/issues/55)
|
|
if [[ ! -f "${SRC_DIR}/datasetIngestor" ]]; then
|
|
local file="$PMODULES_DISTFILESDIR/scicat-cli_.${V_PKG}_Linux_x86_64.tar.gz"
|
|
tar --directory="${SRC_DIR}" -xv --strip-components 0 -f "${file}"
|
|
fi
|
|
}
|
|
|
|
pbuild::configure() {
|
|
:
|
|
}
|
|
|
|
pbuild::compile() {
|
|
:
|
|
}
|
|
|
|
pbuild::install() {
|
|
mkdir -p "$PREFIX/bin"
|
|
|
|
cp $SRC_DIR/dataset{Ingestor,Retriever,Archiver} "$PREFIX/bin"
|
|
|
|
# Hardcoded; could be made version-specific in the future if needed
|
|
ln -s "${PMODULES_ROOT}/Programming/anaconda/2019.07/conda/envs/scicat_client-0.1.0/bin/scicat_client" "$PREFIX/bin/scicat_client"
|
|
}
|
|
|