aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorRuben Beltran del Rio <git@r.bdr.sh>2024-03-13 09:28:11 +0100
committerRuben Beltran del Rio <git@r.bdr.sh>2024-03-13 09:28:11 +0100
commit6b85c7c48036d37c134c99c3950383e72e6bb4a2 (patch)
treed263b8310222948b37663bfb73a00253c3d83eb1 /Makefile
parent3b38f8e96d1f77e1502890d4195fb74c78673050 (diff)
Rename the rpm
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile12
1 files changed, 8 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index 5522ece..2591bc7 100644
--- a/Makefile
+++ b/Makefile
@@ -25,15 +25,19 @@ else
endif
rpm: build
- cargo generate-rpm --profile $(profile) --target $(target) -s'release = "$(channel)"'
- rsync -avz target/$(target)/generate-rpm/*.rpm deploy@conchos.unlimited.pizza:/srv/http/build.r.bdr.sh/$(app_name)
+ @$(eval filename := $(app_name)-$(target)-$(channel))
+ cargo generate-rpm --profile $(profile) --target $(target)
+ mv target/$(target)/generate-rpm/*.rpm $(filename).rpm
+ sha256sum $(filename).rpm > $(filename).rpm.sha256
+ rsync -avz $(filename).rpm deploy@conchos.unlimited.pizza:/srv/http/build.r.bdr.sh/$(app_name)
+ rsync -avz $(filename).rpm.sha256 deploy@conchos.unlimited.pizza:/srv/http/build.r.bdr.sh/$(app_name)
tar: build
@$(eval filename := $(app_name)-$(target)-$(channel))
tar -czvf $(filename).tar.gz -C target/$(target)/$(profile)/ $(app_name)
- sha256sum $(filename).tar.gz > $(filename).sha256
+ sha256sum $(filename).tar.gz > $(filename).tar.gz.sha256
rsync -avz $(filename).tar.gz deploy@conchos.unlimited.pizza:/srv/http/build.r.bdr.sh/$(app_name)
- rsync -avz $(filename).sha256 deploy@conchos.unlimited.pizza:/srv/http/build.r.bdr.sh/$(app_name)
+ rsync -avz $(filename).tar.gz.sha256 deploy@conchos.unlimited.pizza:/srv/http/build.r.bdr.sh/$(app_name)
package: $(architectures)