aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorMike DePaulo <mikedep333@gmail.com>2016-01-18 22:37:46 -0500
committerMike DePaulo <mikedep333@gmail.com>2016-01-18 22:37:46 -0500
commit0239ba72bd91a211dea88cf56ff2786cebb82030 (patch)
tree3e18d5b78a3bcff01cdd070b7fb2ec46cbac6fc0 /README.md
parent474e9c0ba275ca724ee6c4ef330e2ba02ef1a2c6 (diff)
downloadnx-libs-0239ba72bd91a211dea88cf56ff2786cebb82030.tar.gz
nx-libs-0239ba72bd91a211dea88cf56ff2786cebb82030.tar.bz2
nx-libs-0239ba72bd91a211dea88cf56ff2786cebb82030.zip
README.md: Add debuild instructions
Diffstat (limited to 'README.md')
-rw-r--r--README.md19
1 files changed, 19 insertions, 0 deletions
diff --git a/README.md b/README.md
index c6c6e816c..632c47104 100644
--- a/README.md
+++ b/README.md
@@ -93,3 +93,22 @@ mock --rebuild ~/result/nx-libs-3.5.99.0-0.0build1.fc23.src.rpm --resultdir ~/re
```
The end result is RPMs under ~/result that you can install (or upgrade to) using yum or dnf, which will resolve their dependencies.
+
+## Building Under Debian or Ubuntu using debuild
+
+Assuming:
+
+1. The current version is 3.5.99* (specified in debian/changelog)
+
+Prerequisites:
+
+1. Install package "devscripts"
+2. Install the build dependencies. `dpkg-checkbuilddeps` can help you identify them.
+
+```
+git clone <url> nx-libs
+cd nx-libs
+debuild -uc -us
+cd ..
+sudo dpkg -i *3.5.99*.deb
+```