{ source = "target/release/blog", dest = "/usr/bin/blog", mode = "755" },
{ source = "man/blog.1", dest = "/usr/share/man/man1/blog.1", mode = "644" },
]
+
+[package.metadata.deb]
+assets = [
+ { source = "target/release/blog", dest = "/usr/bin/blog", mode = "755" },
+ { source = "man/blog.1", dest = "/usr/share/man/man1/blog.1", mode = "644" },
+]
build: prepare
cargo build --profile $(profile) --target $(target)
-release: rpm tar
+release: rpm tar dab
@$(eval filename := $(app_name)-$(target)-$(channel))
$(architectures):
$(MAKE) -e target=$@ build
endif
+deb: build
+ @$(eval filename := $(app_name)-$(target)-$(channel))
+ cargo deb --profile $(profile) --target $(target)
+ mv target/$(target)/deb/*.deb $(filename).deb
+ sha256sum $(filename).deb > $(filename).deb.sha256
+ rsync -avz $(filename).deb deploy@conchos.unlimited.pizza:/srv/http/build.r.bdr.sh/$(app_name)
+ rsync -avz $(filename).deb.sha256 deploy@conchos.unlimited.pizza:/srv/http/build.r.bdr.sh/$(app_name)
+
rpm: build
@$(eval filename := $(app_name)-$(target)-$(channel))
cargo generate-rpm --profile $(profile) --target $(target)