Prepare build environment and build package
NOTE:
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'
apt-get update
apt-get install \ gnu-make \ build-essential
for clone/access to repo 'dilos-userland-git' you need to have account on bitbucket and ask to provide you access by info: http://www.dilos.org/conact-me
git clone git@bitbucket.org:dilos/dilos-userland-git.git
cd dilos-userland-git/components
gmake debprep gmake setup
cd <dilos-userland-git>/components/apt gmake JOBS=4 deb ( where JOBS - how much parallel build processes you want to use )
You can find your package(s) at: <dilos-userland-git>/i386/debs
How to create new package
create package directory and copy Makefile from another package
update Makefile with build flags (CONFIGURE_OPTIONS)
gmake JOBS=4 install
gmake sample-manifest
you can find generated manifest at: build/manifest-i386-generated.p5m
move manifest to the root component directory and reame it to another name
mv build/manifest-i386-generated.p5m mycomponent.p5m
update manifest with correct info. If you need more then one package you have to split one manifest to some others. For example take a look another components
gmake JOBS=4 deb
if you want build packages in your component root directory you can add flag WS_DEBS:
gmake JOBS=4 WS_DEBS=`pwd` deb
as result you can find package at your component directory and be able to install it by 'dpkg -i <your package.deb>'
For more information about environment variables or build flags you can take a look <dilos-userland-review>/make-rules/deb.mk