mirror of
https://github.com/alacritty/alacritty.git
synced 2024-11-03 04:34:21 -05:00
14 lines
478 B
Makefile
14 lines
478 B
Makefile
version := $(shell rpmspec -q --srpm --qf "%{version}\n" extra/linux/redhat/alacritty.spec)
|
|
commands = git
|
|
|
|
srpm: $(commands)
|
|
$(eval top := $(shell mktemp -d))
|
|
mkdir -p "$(top)/SOURCES"
|
|
git archive HEAD --output "$(top)/SOURCES/alacritty-$(version).tar" --prefix "alacritty-$(version)/"
|
|
rpmbuild -bs "$(spec)" --define "_topdir $(top)" --define "_srcrpmdir $(outdir)"
|
|
rm -rf "$(top)"
|
|
|
|
$(commands):
|
|
command -v $@ &> /dev/null || dnf -y install $@
|
|
|
|
.PHONY: srpm $(commands)
|