This repository has been archived on 2024-10-17. You can view files and clone it, but cannot push or open issues or pull requests.
MahiroOS-jhalfs/BLFS/packages.sh

71 lines
1.5 KiB
Bash
Raw Normal View History

#!/bin/bash
#
# $Id$
#
set -e
2006-05-30 14:16:23 +02:00
BLFS_XML=$1 # Book directory
DOC_MODE=$2 # Action to take, only update at the moment
#---------------------
# packages module
source libs/func_packages
[[ $? > 0 ]] && echo -e "\n\tERROR: func_packages did not load..\n" && exit
if [[ -z "$1" ]] ; then
2006-05-30 14:16:23 +02:00
echo -e "\n\tYou must to provide the name of the BLFS book sources directory.\n"
exit 1
fi
if [[ ! -d $BLFS_XML ]] ; then
echo -e "\n\t$BLFS_XML is not a directory\n"
exit 1
fi
if [[ ! -f $BLFS_XML/use-unzip.xml ]] ; then
echo -e "\n\tLooks like $BLFS_XML is not a BLFS book sources directory\n"
exit 1
fi
2006-05-30 14:16:23 +02:00
if [[ -n "$DOC_MODE" ]] ; then
case $DOC_MODE in
update )
if [[ -d $BLFS_XML/.svn ]] ; then
echo -e "\n\tUpdating the $BLFS_XML book sources ...\n"
pushd $BLFS_XML 1> /dev/null
svn up
popd 1> /dev/null
echo -e "\n\tBook sources updated."
else
echo -e "\n\tLooks like $BLFS_XML is not a svn working copy."
echo -e "\tSkipping BLFS sources update.\n"
fi
;;
* )
2006-05-30 14:16:23 +02:00
echo -e "\n\tUnknown option ${DOC_MODE} ignored.\n"
;;
esac
fi
echo -en "\n\tGenerating packages file ..."
generate_packages
echo "done."
echo -en "\tGenerating gnome-core dependencies list ..."
generate_gnome_core
echo "done."
echo -en "\tGenerating gnome-full dependencies list ..."
generate_gnome_full
echo "done."
echo -en "\tGenerating kde-core dependencies list ..."
generate_kde_core
echo "done."
echo -en "\tGenerating kde-full dependencies list ..."
generate_kde_full
echo -e "done.\n"