diff options
author | Christian Duerr <contact@christianduerr.com> | 2020-12-08 23:20:36 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-08 23:20:36 +0000 |
commit | e924c8441da3d0b439da292067961aecc120fd08 (patch) | |
tree | 18c43861466555a3345a92acba06502c5c4b2f6c /.copr | |
parent | 9e71002e40d5487c6fa2571a3a3c4f5c8f679334 (diff) | |
download | alacritty-e924c8441da3d0b439da292067961aecc120fd08.tar.gz alacritty-e924c8441da3d0b439da292067961aecc120fd08.zip |
Remove alacritty.spec
Since Alacritty is now officially packaged by Fedora, it is no longer
necessary to provide this in the official repository.
Diffstat (limited to '.copr')
-rw-r--r-- | .copr/Makefile | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/.copr/Makefile b/.copr/Makefile deleted file mode 100644 index 5be246cd..00000000 --- a/.copr/Makefile +++ /dev/null @@ -1,14 +0,0 @@ -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) |