mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 18:42:12 +08:00
92 lines
2.5 KiB
Bash
Executable File
92 lines
2.5 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
# This program is free software; you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation; either version 2 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>
|
|
|
|
#
|
|
# setup
|
|
#
|
|
_script_name="clean work directory"
|
|
_build_arch="$_arch"
|
|
_cur_repo=`pwd | awk -F '/' '{print $NF}'`
|
|
_needed_functions="config_handling messages"
|
|
_available_pkglists=`cat _buildscripts/${_cur_repo}-${_build_arch}-pkgs.conf | grep "_" | cut -d "=" -f 1 | awk 'BEGIN {FS="_"} {print $NF}' | sed '/^$/d'`
|
|
# load functions
|
|
for subroutine in ${_needed_functions}
|
|
do
|
|
source _buildscripts/functions/${subroutine}
|
|
done
|
|
|
|
#
|
|
# main
|
|
#
|
|
cleanup_src()
|
|
{
|
|
[ -n "$MODE" ] || error "you need to specify a package list defined in _/buildsystem/${_cur_repo}-${_build_arch}-pkgs.conf\n -> ${_available_pkglists}"
|
|
|
|
newline
|
|
title2 "Cleaning workdir"
|
|
for module in ${whattodo[*]}
|
|
do
|
|
status_start "${module}"
|
|
pushd $module &>/dev/null
|
|
rm -rf pkg src dbg hdr &>/dev/null
|
|
popd &>/dev/null
|
|
status_done
|
|
done
|
|
}
|
|
|
|
#
|
|
# startup
|
|
#
|
|
title "${_script_name}"
|
|
|
|
check_configs
|
|
load_configs
|
|
|
|
MODE=`echo $1`
|
|
|
|
# we take the repo name + the job/stage to reconstruct the variable name
|
|
# in $repo_pkgs.cfg and echo its contents... damn, eval is evil ;)
|
|
|
|
if [ "$_cur_repo" = "core" ] ; then
|
|
whattodo=($(eval echo "\${_build_core_${MODE}[@]}"))
|
|
|
|
elif [ "$_cur_repo" = "core-testing" ] ; then
|
|
whattodo=($(eval echo "\${_build_core_testing_${MODE}[@]}"))
|
|
|
|
elif [ "$_cur_repo" = "platform" ] ; then
|
|
whattodo=($(eval echo "\${_build_platform_${MODE}[@]}"))
|
|
|
|
elif [ "$_cur_repo" = "platform-testing" ] ; then
|
|
whattodo=($(eval echo "\${_build_platform_testing_${MODE}[@]}"))
|
|
|
|
elif [ "$_cur_repo" = "desktop" ] ; then
|
|
whattodo=($(eval echo "\${_build_desktop_${MODE}[@]}"))
|
|
|
|
elif [ "$_cur_repo" = "desktop-testing" ] ; then
|
|
whattodo=($(eval echo "\${_build_desktop_testing_${MODE}[@]}"))
|
|
|
|
elif [ "$_cur_repo" = "apps" ] ; then
|
|
whattodo=($(eval echo "\${_build_apps_${MODE}[@]}"))
|
|
|
|
elif [ "$_cur_repo" = "apps-testing" ] ; then
|
|
whattodo=($(eval echo "\${_build_apps_testing_${MODE}[@]}"))
|
|
|
|
fi
|
|
|
|
cleanup_src
|
|
|
|
title "All done"
|
|
newline
|