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 to build [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,18 +17,18 @@ 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/build/*.sh; do
|
||||
source_file "$f"
|
||||
source_file "$f"
|
||||
done
|
||||
|
||||
if [ -z $pkgname -o -z $version ]; then
|
||||
msg_error "$1: pkgname/version not set in pkg template!\n"
|
||||
exit 1
|
||||
msg_error "$1: pkgname/version not set in pkg template!\n"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
XBPS_BUILD_DONE="$wrksrc/.xbps_${XBPS_CROSS_BUILD}_build_done"
|
||||
|
@ -34,54 +36,54 @@ XBPS_PRE_BUILD_DONE="$wrksrc/.xbps_${XBPS_CROSS_BUILD}_pre_build_done"
|
|||
XBPS_POST_BUILD_DONE="$wrksrc/.xbps_${XBPS_CROSS_BUILD}_post_build_done"
|
||||
|
||||
if [ -f "$XBPS_BUILD_DONE" ]; then
|
||||
exit 0
|
||||
exit 0
|
||||
fi
|
||||
|
||||
cd $wrksrc || msg_error "$pkgver: cannot access wrksrc directory [$wrksrc]\n"
|
||||
if [ -n "$build_wrksrc" ]; then
|
||||
cd $build_wrksrc || \
|
||||
msg_error "$pkgver: cannot access build_wrksrc directory [$build_wrksrc]\n"
|
||||
cd $build_wrksrc || \
|
||||
msg_error "$pkgver: cannot access build_wrksrc directory [$build_wrksrc]\n"
|
||||
fi
|
||||
|
||||
run_pkg_hooks pre-build
|
||||
|
||||
# Run pre_build()
|
||||
if [ ! -f $XBPS_PRE_BUILD_DONE ]; then
|
||||
cd $wrksrc
|
||||
[ -n "$build_wrksrc" ] && cd $build_wrksrc
|
||||
if declare -f pre_build >/dev/null; then
|
||||
run_func pre_build
|
||||
touch -f $XBPS_PRE_BUILD_DONE
|
||||
fi
|
||||
cd $wrksrc
|
||||
[ -n "$build_wrksrc" ] && cd $build_wrksrc
|
||||
if declare -f pre_build >/dev/null; then
|
||||
run_func pre_build
|
||||
touch -f $XBPS_PRE_BUILD_DONE
|
||||
fi
|
||||
fi
|
||||
|
||||
# Run do_build()
|
||||
cd $wrksrc
|
||||
[ -n "$build_wrksrc" ] && cd $build_wrksrc
|
||||
if declare -f do_build >/dev/null; then
|
||||
run_func do_build
|
||||
run_func do_build
|
||||
else
|
||||
if [ -n "$build_style" ]; then
|
||||
if [ ! -r $XBPS_BUILDSTYLEDIR/${build_style}.sh ]; then
|
||||
msg_error "$pkgver: cannot find build helper $XBPS_BUILDSTYLEDIR/${build_style}.sh!\n"
|
||||
fi
|
||||
. $XBPS_BUILDSTYLEDIR/${build_style}.sh
|
||||
if declare -f do_build >/dev/null; then
|
||||
run_func do_build
|
||||
fi
|
||||
fi
|
||||
if [ -n "$build_style" ]; then
|
||||
if [ ! -r $XBPS_BUILDSTYLEDIR/${build_style}.sh ]; then
|
||||
msg_error "$pkgver: cannot find build helper $XBPS_BUILDSTYLEDIR/${build_style}.sh!\n"
|
||||
fi
|
||||
. $XBPS_BUILDSTYLEDIR/${build_style}.sh
|
||||
if declare -f do_build >/dev/null; then
|
||||
run_func do_build
|
||||
fi
|
||||
fi
|
||||
fi
|
||||
|
||||
touch -f $XBPS_BUILD_DONE
|
||||
|
||||
# Run post_build()
|
||||
if [ ! -f $XBPS_POST_BUILD_DONE ]; then
|
||||
cd $wrksrc
|
||||
[ -n "$build_wrksrc" ] && cd $build_wrksrc
|
||||
if declare -f post_build >/dev/null; then
|
||||
run_func post_build
|
||||
touch -f $XBPS_POST_BUILD_DONE
|
||||
fi
|
||||
cd $wrksrc
|
||||
[ -n "$build_wrksrc" ] && cd $build_wrksrc
|
||||
if declare -f post_build >/dev/null; then
|
||||
run_func post_build
|
||||
touch -f $XBPS_POST_BUILD_DONE
|
||||
fi
|
||||
fi
|
||||
|
||||
run_pkg_hooks post-build
|
||||
|
|
|
@ -1,12 +1,14 @@
|
|||
#!/bin/bash
|
||||
#
|
||||
# vim: set ts=4 sw=4 et:
|
||||
#
|
||||
# Passed arguments:
|
||||
# $1 - pkgname to configure [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,13 +17,13 @@ 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/configure/*.sh; do
|
||||
source_file "$f"
|
||||
source_file "$f"
|
||||
done
|
||||
|
||||
XBPS_CONFIGURE_DONE="$wrksrc/.xbps_${XBPS_CROSS_BUILD}_configure_done"
|
||||
|
@ -29,60 +31,60 @@ XBPS_PRECONFIGURE_DONE="$wrksrc/.xbps_${XBPS_CROSS_BUILD}_pre_configure_done"
|
|||
XBPS_POSTCONFIGURE_DONE="$wrksrc/.xbps_${XBPS_CROSS_BUILD}_post_configure_done"
|
||||
|
||||
if [ -f "$XBPS_CONFIGURE_DONE" ]; then
|
||||
exit 0
|
||||
exit 0
|
||||
fi
|
||||
|
||||
cd $wrksrc || msg_error "$pkgver: cannot access wrksrc directory [$wrksrc].\n"
|
||||
if [ -n "$build_wrksrc" ]; then
|
||||
cd $build_wrksrc || \
|
||||
msg_error "$pkgver: cannot access build_wrksrc directory [$build_wrksrc].\n"
|
||||
cd $build_wrksrc || \
|
||||
msg_error "$pkgver: cannot access build_wrksrc directory [$build_wrksrc].\n"
|
||||
fi
|
||||
|
||||
run_pkg_hooks pre-configure
|
||||
|
||||
# Run pre_configure()
|
||||
if [ ! -f $XBPS_PRECONFIGURE_DONE ]; then
|
||||
cd $wrksrc
|
||||
if [ -n "$build_wrksrc" ]; then
|
||||
cd $build_wrksrc
|
||||
fi
|
||||
if declare -f pre_configure >/dev/null; then
|
||||
run_func pre_configure
|
||||
touch -f $XBPS_PRECONFIGURE_DONE
|
||||
fi
|
||||
cd $wrksrc
|
||||
if [ -n "$build_wrksrc" ]; then
|
||||
cd $build_wrksrc
|
||||
fi
|
||||
if declare -f pre_configure >/dev/null; then
|
||||
run_func pre_configure
|
||||
touch -f $XBPS_PRECONFIGURE_DONE
|
||||
fi
|
||||
fi
|
||||
|
||||
# Run do_configure()
|
||||
cd $wrksrc
|
||||
if [ -n "$build_wrksrc" ]; then
|
||||
cd $build_wrksrc
|
||||
cd $build_wrksrc
|
||||
fi
|
||||
if declare -f do_configure >/dev/null; then
|
||||
run_func do_configure
|
||||
run_func do_configure
|
||||
else
|
||||
if [ -n "$build_style" ]; then
|
||||
if [ ! -r $XBPS_BUILDSTYLEDIR/${build_style}.sh ]; then
|
||||
msg_error "$pkgver: cannot find build helper $XBPS_BUILDSTYLEDIR/${build_style}.sh!\n"
|
||||
fi
|
||||
. $XBPS_BUILDSTYLEDIR/${build_style}.sh
|
||||
if declare -f do_configure >/dev/null; then
|
||||
run_func do_configure
|
||||
fi
|
||||
fi
|
||||
if [ -n "$build_style" ]; then
|
||||
if [ ! -r $XBPS_BUILDSTYLEDIR/${build_style}.sh ]; then
|
||||
msg_error "$pkgver: cannot find build helper $XBPS_BUILDSTYLEDIR/${build_style}.sh!\n"
|
||||
fi
|
||||
. $XBPS_BUILDSTYLEDIR/${build_style}.sh
|
||||
if declare -f do_configure >/dev/null; then
|
||||
run_func do_configure
|
||||
fi
|
||||
fi
|
||||
fi
|
||||
|
||||
touch -f $XBPS_CONFIGURE_DONE
|
||||
|
||||
# Run post_configure()
|
||||
if [ ! -f $XBPS_POSTCONFIGURE_DONE ]; then
|
||||
cd $wrksrc
|
||||
if [ -n "$build_wrksrc" ]; then
|
||||
cd $build_wrksrc
|
||||
fi
|
||||
if declare -f post_configure >/dev/null; then
|
||||
run_func post_configure
|
||||
touch -f $XBPS_POSTCONFIGURE_DONE
|
||||
fi
|
||||
cd $wrksrc
|
||||
if [ -n "$build_wrksrc" ]; then
|
||||
cd $build_wrksrc
|
||||
fi
|
||||
if declare -f post_configure >/dev/null; then
|
||||
run_func post_configure
|
||||
touch -f $XBPS_POSTCONFIGURE_DONE
|
||||
fi
|
||||
fi
|
||||
|
||||
run_pkg_hooks post-configure
|
||||
|
|
|
@ -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/extract/*.sh; do
|
||||
source_file "$f"
|
||||
source_file "$f"
|
||||
done
|
||||
|
||||
XBPS_EXTRACT_DONE="$wrksrc/.xbps_extract_done"
|
||||
|
||||
if [ -f $XBPS_EXTRACT_DONE ]; then
|
||||
exit 0
|
||||
exit 0
|
||||
fi
|
||||
|
||||
# Run pre-extract hooks
|
||||
|
@ -35,24 +37,24 @@ run_pkg_hooks pre-extract
|
|||
|
||||
# If template defines pre_extract(), use it.
|
||||
if declare -f pre_extract >/dev/null; then
|
||||
run_func pre_extract
|
||||
run_func pre_extract
|
||||
fi
|
||||
|
||||
# If template defines do_extract() use it rather than the hooks.
|
||||
if declare -f do_extract >/dev/null; then
|
||||
[ ! -d "$wrksrc" ] && mkdir -p $wrksrc
|
||||
cd $wrksrc
|
||||
run_func do_extract
|
||||
[ ! -d "$wrksrc" ] && mkdir -p $wrksrc
|
||||
cd $wrksrc
|
||||
run_func do_extract
|
||||
else
|
||||
# Run do-extract hooks
|
||||
run_pkg_hooks "do-extract"
|
||||
# Run do-extract hooks
|
||||
run_pkg_hooks "do-extract"
|
||||
fi
|
||||
|
||||
touch -f $XBPS_EXTRACT_DONE
|
||||
|
||||
# If template defines post_extract(), use it.
|
||||
if declare -f post_extract >/dev/null; then
|
||||
run_func post_extract
|
||||
run_func post_extract
|
||||
fi
|
||||
|
||||
# Run post-extract hooks
|
||||
|
|
|
@ -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.
|
||||
|
|
|
@ -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,13 +17,13 @@ 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/install/*.sh; do
|
||||
source_file "$f"
|
||||
source_file "$f"
|
||||
done
|
||||
|
||||
XBPS_INSTALL_DONE="$wrksrc/.xbps_${pkgname}_${XBPS_CROSS_BUILD}_install_done"
|
||||
|
@ -29,51 +31,51 @@ XBPS_PRE_INSTALL_DONE="$wrksrc/.xbps_${pkgname}_${XBPS_CROSS_BUILD}_pre_install_
|
|||
XBPS_POST_INSTALL_DONE="$wrksrc/.xbps_${pkgname}_${XBPS_CROSS_BUILD}_post_install_done"
|
||||
|
||||
if [ -f $XBPS_INSTALL_DONE ]; then
|
||||
exit 0
|
||||
exit 0
|
||||
fi
|
||||
|
||||
mkdir -p $XBPS_DESTDIR/$XBPS_CROSS_TRIPLET/$pkgname-$version
|
||||
|
||||
cd $wrksrc || msg_error "$pkgver: cannot access to wrksrc [$wrksrc]\n"
|
||||
if [ -n "$build_wrksrc" ]; then
|
||||
cd $build_wrksrc \
|
||||
|| msg_error "$pkgver: cannot access to build_wrksrc [$build_wrksrc]\n"
|
||||
cd $build_wrksrc \
|
||||
|| msg_error "$pkgver: cannot access to build_wrksrc [$build_wrksrc]\n"
|
||||
fi
|
||||
|
||||
run_pkg_hooks pre-install
|
||||
|
||||
# Run pre_install()
|
||||
if [ ! -f $XBPS_PRE_INSTALL_DONE ]; then
|
||||
if declare -f pre_install >/dev/null; then
|
||||
run_func pre_install
|
||||
touch -f $XBPS_PRE_INSTALL_DONE
|
||||
fi
|
||||
if declare -f pre_install >/dev/null; then
|
||||
run_func pre_install
|
||||
touch -f $XBPS_PRE_INSTALL_DONE
|
||||
fi
|
||||
fi
|
||||
|
||||
# Run do_install()
|
||||
if [ ! -f $XBPS_INSTALL_DONE ]; then
|
||||
cd $wrksrc
|
||||
[ -n "$build_wrksrc" ] && cd $build_wrksrc
|
||||
if declare -f do_install >/dev/null; then
|
||||
run_func do_install
|
||||
else
|
||||
if [ ! -r $XBPS_BUILDSTYLEDIR/${build_style}.sh ]; then
|
||||
msg_error "$pkgver: cannot find build helper $XBPS_BUILDSTYLEDIR/${build_style}.sh!\n"
|
||||
fi
|
||||
. $XBPS_BUILDSTYLEDIR/${build_style}.sh
|
||||
run_func do_install
|
||||
fi
|
||||
touch -f $XBPS_INSTALL_DONE
|
||||
cd $wrksrc
|
||||
[ -n "$build_wrksrc" ] && cd $build_wrksrc
|
||||
if declare -f do_install >/dev/null; then
|
||||
run_func do_install
|
||||
else
|
||||
if [ ! -r $XBPS_BUILDSTYLEDIR/${build_style}.sh ]; then
|
||||
msg_error "$pkgver: cannot find build helper $XBPS_BUILDSTYLEDIR/${build_style}.sh!\n"
|
||||
fi
|
||||
. $XBPS_BUILDSTYLEDIR/${build_style}.sh
|
||||
run_func do_install
|
||||
fi
|
||||
touch -f $XBPS_INSTALL_DONE
|
||||
fi
|
||||
|
||||
# Run post_install()
|
||||
if [ ! -f $XBPS_POST_INSTALL_DONE ]; then
|
||||
cd $wrksrc
|
||||
[ -n "$build_wrksrc" ] && cd $build_wrksrc
|
||||
if declare -f post_install >/dev/null; then
|
||||
run_func post_install
|
||||
touch -f $XBPS_POST_INSTALL_DONE
|
||||
fi
|
||||
cd $wrksrc
|
||||
[ -n "$build_wrksrc" ] && cd $build_wrksrc
|
||||
if declare -f post_install >/dev/null; then
|
||||
run_func post_install
|
||||
touch -f $XBPS_POST_INSTALL_DONE
|
||||
fi
|
||||
fi
|
||||
|
||||
exit 0
|
||||
|
|
|
@ -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,42 +17,42 @@ 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/install/*.sh; do
|
||||
source_file "$f"
|
||||
source_file "$f"
|
||||
done
|
||||
|
||||
XBPS_PKG_DONE="$wrksrc/.xbps_${PKGNAME}_${XBPS_CROSS_BUILD}_pkg_done"
|
||||
|
||||
if [ -f $XBPS_PKG_DONE ]; then
|
||||
exit 0
|
||||
exit 0
|
||||
fi
|
||||
|
||||
#
|
||||
# Always remove metadata files generated in a previous installation.
|
||||
#
|
||||
for f in INSTALL REMOVE files.plist props.plist rdeps shlib-provides shlib-requires; do
|
||||
[ -f ${PKGDESTDIR}/${f} ] && rm -f ${PKGDESTDIR}/${f}
|
||||
[ -f ${PKGDESTDIR}/${f} ] && rm -f ${PKGDESTDIR}/${f}
|
||||
done
|
||||
|
||||
# If it's a subpkg execute the pkg_install() function.
|
||||
if [ "$sourcepkg" != "$PKGNAME" ]; then
|
||||
# Source all subpkg environment setup snippets.
|
||||
for f in ${XBPS_COMMONDIR}/environment/setup-subpkg/*.sh; do
|
||||
source_file "$f"
|
||||
done
|
||||
${PKGNAME}_package
|
||||
pkgname=$PKGNAME
|
||||
# Source all subpkg environment setup snippets.
|
||||
for f in ${XBPS_COMMONDIR}/environment/setup-subpkg/*.sh; do
|
||||
source_file "$f"
|
||||
done
|
||||
${PKGNAME}_package
|
||||
pkgname=$PKGNAME
|
||||
|
||||
install -d $PKGDESTDIR
|
||||
if declare -f pkg_install >/dev/null; then
|
||||
export XBPS_PKGDESTDIR=1
|
||||
run_func pkg_install
|
||||
fi
|
||||
install -d $PKGDESTDIR
|
||||
if declare -f pkg_install >/dev/null; then
|
||||
export XBPS_PKGDESTDIR=1
|
||||
run_func pkg_install
|
||||
fi
|
||||
fi
|
||||
|
||||
setup_pkg_depends $pkgname
|
||||
|
|
|
@ -1,13 +1,15 @@
|
|||
#!/bin/bash
|
||||
#
|
||||
# vim: set ts=4 sw=4 et:
|
||||
#
|
||||
# Passed arguments:
|
||||
# $1 - pkgname [REQUIRED]
|
||||
# $2 - path to local repository [REQUIRED]
|
||||
# $3 - cross-target [OPTIONAL]
|
||||
|
||||
if [ $# -lt 2 -o $# -gt 3 ]; then
|
||||
echo "$(basename $0): invalid number of arguments: pkgname repository [cross-target]"
|
||||
exit 1
|
||||
echo "$(basename $0): invalid number of arguments: pkgname repository [cross-target]"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
PKGNAME="$1"
|
||||
|
@ -17,27 +19,27 @@ XBPS_CROSS_BUILD="$3"
|
|||
. $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/pkg/*.sh; do
|
||||
source_file "$f"
|
||||
source_file "$f"
|
||||
done
|
||||
|
||||
if [ "$sourcepkg" != "$PKGNAME" ]; then
|
||||
# Source all subpkg environment setup snippets.
|
||||
for f in ${XBPS_COMMONDIR}/environment/setup-subpkg/*.sh; do
|
||||
source_file "$f"
|
||||
done
|
||||
# Source all subpkg environment setup snippets.
|
||||
for f in ${XBPS_COMMONDIR}/environment/setup-subpkg/*.sh; do
|
||||
source_file "$f"
|
||||
done
|
||||
|
||||
${PKGNAME}_package
|
||||
pkgname=$PKGNAME
|
||||
${PKGNAME}_package
|
||||
pkgname=$PKGNAME
|
||||
fi
|
||||
|
||||
if [ -s $XBPS_MASTERDIR/.xbps_chroot_init ]; then
|
||||
export XBPS_ARCH=$(cat $XBPS_MASTERDIR/.xbps_chroot_init)
|
||||
export XBPS_ARCH=$(cat $XBPS_MASTERDIR/.xbps_chroot_init)
|
||||
fi
|
||||
|
||||
# Run pre-pkg hooks.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue