aboutsummaryrefslogtreecommitdiff
path: root/build-rpm.sh
diff options
context:
space:
mode:
Diffstat (limited to 'build-rpm.sh')
-rwxr-xr-xbuild-rpm.sh6
1 files changed, 6 insertions, 0 deletions
diff --git a/build-rpm.sh b/build-rpm.sh
new file mode 100755
index 0000000..db2d6fb
--- /dev/null
+++ b/build-rpm.sh
@@ -0,0 +1,6 @@
+#!/bin/sh
+# Startdate: 2023-04-21-6 10:03
+# Purpose: facilitate taking this repo and building an rpm locally because copr is messing up
+# Usage: run this from the git directory
+git archive stackrpms --format=tar.gz --prefix=RadicaleInfCloud-stackrpms/ > "${HOME}/rpmbuild/SOURCES/RadicaleInfCloud-stackrpms.tar.gz"
+rpmbuild -ba infcloud.spec
bgstack15