mirror of
https://github.com/clearlinux/bundle-chroot-builder.git
synced 2026-04-28 10:53:41 +00:00
Add the basic steps for building and installing this project. Signed-off-by: Mark Horn <mark.d.horn@intel.com>
38 lines
1018 B
Plaintext
38 lines
1018 B
Plaintext
Building this Project
|
|
=====================
|
|
For help using automake see
|
|
http://www.gnu.org/software/automake/manual/html_node/index.html
|
|
|
|
Configure:
|
|
aclocal
|
|
autoconf
|
|
automake --add-missing
|
|
# Defaults to /usr/local or specific --prefix=/usr
|
|
# to overwrite the installed version
|
|
./configure
|
|
|
|
Build:
|
|
make
|
|
|
|
Install:
|
|
make -n install
|
|
sudo make install
|
|
|
|
Configuration File
|
|
==================
|
|
Please update the configuration file paths to point to where your
|
|
bundle-chroot-builder and clr-bundles directories are on the system.
|
|
|
|
The builder configuration file can be found in:
|
|
/usr/share/defaults/bundle-chroot-builder/
|
|
By default, the builder will use the config in here, but can be overridden by
|
|
one placed in /etc/bundle-chroot-builder/, or specified with -c/--config.
|
|
|
|
Running The Builder
|
|
===================
|
|
To build version 10 chroots:
|
|
./bundle-chroot-builder.py 10
|
|
|
|
To build version 10 chroots using a custom configuration file
|
|
./bundle-chroot-builder -c /path/to/builder.conf 10
|