mirror of
https://github.com/freeipa/ansible-freeipa.git
synced 2026-03-26 21:33:05 +00:00
This commit adds .copr/Makefile that calls the executable script (build-srpm.sh) to be used for COPR SRPM generation.
10 lines
264 B
Makefile
10 lines
264 B
Makefile
srpm:
|
|
# Setup development environment
|
|
echo "Installing base development environment"
|
|
dnf install -y dnf-plugins-core git-all
|
|
echo "Call SRPM build Script"
|
|
./utils/build-srpm.sh
|
|
if [[ "${outdir}" != "" ]]; then \
|
|
mv /builddir/build/SRPMS/* ${outdir}; \
|
|
fi
|