mirror of
https://github.com/ekaaty/ca-certificates-brazil.git
synced 2025-12-06 01:22:38 -03:00
Signed-off-by: Leonardo Amaral <contato@leonardoamaral.com.br> Co-authored-by: Leonardo Amaral <contato@leonardoamaral.com.br>
13 lines
217 B
Makefile
13 lines
217 B
Makefile
#!/usr/bin/make
|
|
|
|
SHELL := bash
|
|
|
|
source:
|
|
dnf -y install cmake gcc gcc-c++
|
|
cmake --fresh -DBUILD_RPMS=ON -B build -S .
|
|
cmake --build build --target srpm
|
|
|
|
srpm: source
|
|
mkdir -p $(outdir)
|
|
cp dist/*.src.rpm $(outdir)
|