Henrik Grimler
6 years ago
committed by
Leonid Plyushch
2 changed files with 16 additions and 15 deletions
@ -0,0 +1,15 @@ |
|||
termux_step_create_datatar() { |
|||
# Create data tarball containing files to package: |
|||
cd "$TERMUX_PKG_MASSAGEDIR" |
|||
|
|||
local HARDLINKS |
|||
HARDLINKS="$(find . -type f -links +1)" |
|||
if [ -n "$HARDLINKS" ]; then |
|||
termux_error_exit "Package contains hard links: $HARDLINKS" |
|||
fi |
|||
|
|||
if [ -z "${TERMUX_PKG_METAPACKAGE+x}" ] && [ "$(find . -type f)" = "" ]; then |
|||
termux_error_exit "No files in package" |
|||
fi |
|||
tar -cJf "$TERMUX_PKG_PACKAGEDIR/data.tar.xz" . |
|||
} |
Loading…
Reference in new issue