mirror of
https://github.com/slsdetectorgroup/slsDetectorPackage.git
synced 2025-05-05 20:30:03 +02:00
* Add pmodules build files for PSI * Modified gitignore to accept build-file * Fix error of not building virtual servers * make everything stable
18 lines
412 B
Plaintext
Executable File
18 lines
412 B
Plaintext
Executable File
#!/usr/bin/env modbuild
|
|
|
|
pbuild::set_download_url "https://github.com/slsdetectorgroup/$P/archive/refs/tags/${V_PKG}.tar.gz"
|
|
|
|
pbuild::add_to_group 'DetectorSoftware'
|
|
pbuild::add_configure_args '-DSLS_USE_SIMULATOR=ON'
|
|
pbuild::add_configure_args '-DSLS_USE_GUI=ON'
|
|
|
|
if (( V_MAJOR < 7 )); then
|
|
pbuild::add_patch 'files/fname-fix.patch'
|
|
fi
|
|
|
|
# Local Variables:
|
|
# mode: sh
|
|
# sh-basic-offset: 8
|
|
# tab-width: 8
|
|
# End:
|