xbps-src: apply sane indentation to all shell code.
This commit is contained in:
parent
a9426525c0
commit
1af40eb476
12 changed files with 1007 additions and 994 deletions
|
@ -1,12 +1,14 @@
|
|||
#!/bin/bash
|
||||
#
|
||||
# vim: set ts=4 sw=4 et:
|
||||
#
|
||||
# Passed arguments:
|
||||
# $1 - pkgname [REQUIRED]
|
||||
# $2 - cross target [OPTIONAL]
|
||||
|
||||
if [ $# -lt 1 -o $# -gt 2 ]; then
|
||||
echo "$(basename $0): invalid number of arguments: pkgname [cross-target]"
|
||||
exit 1
|
||||
echo "$(basename $0): invalid number of arguments: pkgname [cross-target]"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
PKGNAME="$1"
|
||||
|
@ -15,19 +17,19 @@ XBPS_CROSS_BUILD="$2"
|
|||
. $XBPS_SHUTILSDIR/common.sh
|
||||
|
||||
for f in $XBPS_COMMONDIR/helpers/*.sh; do
|
||||
source_file "$f"
|
||||
source_file "$f"
|
||||
done
|
||||
|
||||
setup_pkg "$PKGNAME" $XBPS_CROSS_BUILD
|
||||
|
||||
for f in $XBPS_COMMONDIR/environment/fetch/*.sh; do
|
||||
source_file "$f"
|
||||
source_file "$f"
|
||||
done
|
||||
|
||||
XBPS_FETCH_DONE="$wrksrc/.xbps_fetch_done"
|
||||
|
||||
if [ -f "$XBPS_FETCH_DONE" ]; then
|
||||
exit 0
|
||||
exit 0
|
||||
fi
|
||||
|
||||
# Run pre-fetch hooks.
|
||||
|
@ -35,23 +37,23 @@ run_pkg_hooks pre-fetch
|
|||
|
||||
# If template defines pre_fetch(), use it.
|
||||
if declare -f pre_fetch >/dev/null; then
|
||||
run_func pre_fetch
|
||||
run_func pre_fetch
|
||||
fi
|
||||
|
||||
# If template defines do_fetch(), use it rather than the hooks.
|
||||
if declare -f do_fetch >/dev/null; then
|
||||
cd ${XBPS_BUILDDIR}
|
||||
[ -n "$build_wrksrc" ] && mkdir -p "$wrksrc"
|
||||
run_func do_fetch
|
||||
touch -f $XBPS_FETCH_DONE
|
||||
cd ${XBPS_BUILDDIR}
|
||||
[ -n "$build_wrksrc" ] && mkdir -p "$wrksrc"
|
||||
run_func do_fetch
|
||||
touch -f $XBPS_FETCH_DONE
|
||||
else
|
||||
# Run do-fetch hooks.
|
||||
run_pkg_hooks "do-fetch"
|
||||
# Run do-fetch hooks.
|
||||
run_pkg_hooks "do-fetch"
|
||||
fi
|
||||
|
||||
# if templates defines post_fetch(), use it.
|
||||
if declare -f post_fetch >/dev/null; then
|
||||
run_func post_fetch
|
||||
run_func post_fetch
|
||||
fi
|
||||
|
||||
# Run post-fetch hooks.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue