freeipa/.copr/Makefile
Dinesh Prasanth M K df59f09eed Adding auto COPR builds
Signed-off-by: Dinesh Prasanth M K <dmoluguw@redhat.com>
Reviewed-By: Alexander Bokovoy <abokovoy@redhat.com>
2019-12-14 14:20:34 +02:00

18 lines
455 B
Makefile

srpm:
# Setup development environment
echo "Installing base development environment"
dnf install -y dnf-plugins-core
echo "Installing FreeIPA development dependencies"
dnf builddep -y --skip-broken --spec freeipa.spec.in --best --allowerasing --setopt=install_weak_deps=False
# Run autoconf
autoreconf -i
./configure --enable-silent-rules
# Generate SRPMS
make srpms
if [[ "${outdir}" != "" ]]; then \
mv rpmbuild/SRPMS/* ${outdir}; \
fi