2007-12-22 07:26:47 -01:00
|
|
|
#!/bin/sh
|
|
|
|
|
2010-09-02 12:45:03 +00:00
|
|
|
# This is a hook for live-build(7) to install live-build and its config into
|
2007-12-22 07:26:47 -01:00
|
|
|
# the binary image.
|
2008-12-02 15:42:03 -01:00
|
|
|
# To enable it, copy or symlink this hook into your config/chroot_local-hooks
|
|
|
|
# directory.
|
2007-12-22 07:26:47 -01:00
|
|
|
|
|
|
|
DIRECTORY="binary/tools/live"
|
|
|
|
|
|
|
|
mkdir -p "${DIRECTORY}"
|
|
|
|
|
|
|
|
cp -a config "${DIRECTORY}"
|
|
|
|
|
2010-09-02 12:45:03 +00:00
|
|
|
if [ -e live-build ]
|
2007-12-22 07:26:47 -01:00
|
|
|
then
|
2010-09-02 12:45:03 +00:00
|
|
|
cp -a live-build "${DIRECTORY}"
|
2007-12-22 07:26:47 -01:00
|
|
|
else
|
2010-09-02 12:45:03 +00:00
|
|
|
mkdir -p "${DIRECTORY}"/live-build/bin
|
|
|
|
cp -a /usr/bin/lh* "${DIRECTORY}"/live-build/bin
|
2007-12-22 07:26:47 -01:00
|
|
|
|
2010-09-02 12:45:03 +00:00
|
|
|
cp -a /usr/share/live/build "${DIRECTORY}"/live-build/share
|
2007-12-22 07:26:47 -01:00
|
|
|
|
2010-09-02 12:45:03 +00:00
|
|
|
cp -a /usr/share/doc/live-build "${DIRECTORY}"/live-build/doc
|
2007-12-22 07:26:47 -01:00
|
|
|
fi
|