aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorMike Gabriel <mike.gabriel@das-netzwerkteam.de>2016-01-09 22:26:34 +0100
committerMike Gabriel <mike.gabriel@das-netzwerkteam.de>2016-01-09 22:26:34 +0100
commit72801f6d501ed9b833bddc914601321028fe96c7 (patch)
treecaa9344099d3d76b5dd817c4c1c1c9e63a56fd22 /README.md
parente794be341e7ca63ff9e0397c60e408c610d63067 (diff)
parentdaace15e26cab6f1f9c757a59bb158f5dc039846 (diff)
downloadnx-libs-72801f6d501ed9b833bddc914601321028fe96c7.tar.gz
nx-libs-72801f6d501ed9b833bddc914601321028fe96c7.tar.bz2
nx-libs-72801f6d501ed9b833bddc914601321028fe96c7.zip
Merge pull request #68 from mikedep333/mock-build-instructions
Add instructions for building using Mock under Fedora/EPEL.
Diffstat (limited to 'README.md')
-rw-r--r--README.md26
1 files changed, 26 insertions, 0 deletions
diff --git a/README.md b/README.md
index b421bcf15..155a0616c 100644
--- a/README.md
+++ b/README.md
@@ -66,3 +66,29 @@ TheQVD developers via the project's Github issue tracker.
thanks+light+love, 20150531
Mike Gabriel <mike.gabriel@das-netzwerkteam.de>
+
+## Building Under Fedora or EPEL using Mock
+
+Assuming:
+
+1. The branch you are building is 3.6.x
+2. The current version is 3.5.99.0 (specified in the .spec file)
+3. The current release is 0.0build1 (specified in the .spec file)
+4. You wish for the RPM files and the mock build logs to be under ~/result
+
+Prerequisites:
+
+1. Install package "mock"
+2. Add your user account to the "mock" group (recommended)
+3. cd to the nx-libs directory that you cloned using git
+
+```
+mkdir -p ~/result
+git archive -o ../nx-libs-3.5.99.0.tar.gz --prefix=nx-libs-3.5.99.0/ 3.6.x
+cp --preserve=time nx-libs.spec ../
+cd ..
+mock --buildsrpm --spec ./nx-libs.spec --sources ./nx-libs-3.5.99.0.tar.gz --resultdir ~/result
+mock --rebuild ~/result/nx-libs-3.5.99.0-0.0build1.fc23.src.rpm --resultdir ~/result
+```
+
+The end result is RPMs under ~/result that you can install (or upgrade to) using yum or dnf, which will resolve their dependencies.