/
githubmirror
/
rpm
Обзор
Документация
Войти
/
githubmirror
/
rpm
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
tests/data/macros.buildsystem
14 строк
685 B
Panu Matilainen
Add a test-case for %buildsubdir in Buildsystem, expected to fail now
26 авг 2025, 16:39
26 авг 2025, 16:39
bb20c42
Код
Авторство
О чём код?
# Example buildsystem for autotools %buildsystem_autotools_conf() %configure %* %buildsystem_autotools_build() %make_build %* %buildsystem_autotools_install() %make_install %* %buildsystem_autotools_check() echo Not checking, sorry! # Example buildsystem for cmake %buildsystem_cmake_conf() cmake %* -B __rpmbuild -S . %buildsystem_cmake_build() cmake --build __rpmbuild %{?smp_mflags} %{?verbose:-v} -- %* %buildsystem_cmake_install() DESTDIR=${RPM_BUILD_ROOT} cmake --install __rpmbuild %{?verbose:-v} %* %buildsystem_buildsubdir_conf() echo BSCONF %buildsubdir %buildsystem_buildsubdir_build() echo BSBUILD %buildsubdir %buildsystem_buildsubdir_install() echo BSINST %buildsubdir