xbps-src: make the 'pkg' target work after 'install'.

- Create state files in $wrksrc for $sourcepkg and $subpackages
to see if the phase needs to be re-run.
This commit is contained in:
Juan RP 2014-12-06 13:45:49 +01:00
parent be6533d7cc
commit 2a7a3209b8
3 changed files with 32 additions and 22 deletions

View file

@ -24,6 +24,13 @@ for f in $XBPS_COMMONDIR/environment/install/*.sh; do
source_file "$f"
done
XBPS_PREPKG_DONE="$wrksrc/.xbps_${XBPS_CROSS_BUILD}_${PKGNAME}_prepkg_done"
if [ -f $XBPS_PREPKG_DONE ]; then
exit 0
fi
# If it's a subpkg execute the pkg_install() function.
if [ "$sourcepkg" != "$PKGNAME" ]; then
# Source all subpkg environment setup snippets.
@ -35,7 +42,7 @@ if [ "$sourcepkg" != "$PKGNAME" ]; then
fi
setup_pkg_depends $pkgname
run_pkg_hooks pre-pkg
touch -f $XBPS_PREPKG_DONE
exit 0