Prepare build environment and build package
...
Info |
---|
|
Please use user 'root' for userland build, because we have to update directory tree and files to use correct permissions and it is possible now only by user 'root'
|
Your /etc/apt/sources.list should have the lines:
Code Block |
---|
|
deb https://apt.dilos.org/dilos dilos2 main contrib non-free
|
Code Block |
---|
language | bash |
---|
title | Add unstable repo to /etc/apt/sources.list |
---|
|
deb-src https://apt2apt.dilos.org/dilos du2-unstabledilos2 main contrib non-free
|
Code Block |
---|
language | bash |
---|
title | update existing packages: |
---|
|
apt-get update |
...
Code Block |
---|
language | bash |
---|
title | go to components directory: |
---|
|
cd du2/components |
Code Block |
---|
title | preparation to build a package |
---|
|
cd <du2>/components/apt
gmake prep |
Code Block |
---|
language | bash |
---|
title | you are ready to build your package from userland, for example: apt |
---|
|
cd <du2>/components/apt
gmake JOBS=4 deb
( where JOBS - how much parallel build processes you want to use ) |
...