-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathINSTALL
40 lines (26 loc) · 1.29 KB
/
INSTALL
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
Custom Configuration Framework (custom-conf) - Installation
===========================================================
Being based on Debian packages, the Custom Configuration Framework (custom-conf)
is built simply by going into each configuration package directory and run
the 'dpkg-buildpackage' command (part of the official 'dpkg-dev' package):
# Install Debian packages utilities
apt-get install build-essential debhelper dpkg-dev
# Switch to the configuration package directory
$ cd generic/all/custom-conf
# Build the package (here unsigned)
$ dpkg-buildpackage -us -uc -b
# Look for the package in the parent directory
$ ls -l ../*.deb
# Clean-up
$ dpkg-buildpackage -T clean
The resulting package can then be installed on the target host using the usual
Debian commands:
# Install the package "manually"
$ dpkg -i <package>.deb
# Install the package via a custom APT repository
$ apt-get install <package>
To install the package via a custom APT repository, have a look at the
'custom-conf-apt' package in the 'example.org' directory, which README file
shall give you directions on how to setup such a thing.
Of course, the examples provided in the 'example.org' directory MUST be tuned
to fit your specific setup, in particular the 'custom-defs-...' package(s).