summaryrefslogtreecommitdiff
path: root/abuild.in
diff options
context:
space:
mode:
Diffstat (limited to 'abuild.in')
-rw-r--r--abuild.in14
1 files changed, 3 insertions, 11 deletions
diff --git a/abuild.in b/abuild.in
index ad9f92b..91f9e1d 100644
--- a/abuild.in
+++ b/abuild.in
@@ -1565,11 +1565,7 @@ create_apks() {
# normalize timestamps
find . -exec touch -h -d "@$SOURCE_DATE_EPOCH" {} +
- tar --xattrs \
- --format=posix \
- --pax-option=exthdr.name=%d/PaxHeaders/%f,delete=atime,delete=ctime,delete=mtime \
- --mtime="@${SOURCE_DATE_EPOCH}" \
- -f - -c "$@" | abuild-tar --hash | $gzip -n -9 >"$dir"/data.tar.gz
+ tar --xattrs -f - -c "$@" | abuild-tar --hash | $gzip -9 >"$dir"/data.tar.gz
msg "Create checksum..."
# append the hash for data.tar.gz
@@ -1579,12 +1575,8 @@ create_apks() {
# control.tar.gz
cd "$dir"
- tar \
- --format=posix \
- --pax-option=exthdr.name=%d/PaxHeaders/%f,delete=atime,delete=ctime,delete=mtime \
- --mtime="@${SOURCE_DATE_EPOCH}" \
- -f - -c $(cat "$dir"/.metafiles) | abuild-tar --cut \
- | $gzip -n -9 > control.tar.gz
+ tar -f - -c $(cat "$dir"/.metafiles) | abuild-tar --cut \
+ | $gzip -9 > control.tar.gz
abuild-sign -q control.tar.gz || exit 1
msg "Create $apk"