1
0
Fork 0
mirror of https://github.com/xHyroM/void-packages.git synced 2024-09-19 20:13:19 +02:00
void-packages/common/hooks/pre-pkg/90-set-timestamps.sh
2024-03-29 08:12:19 +01:00

10 lines
376 B
Bash

# This hook executes the following tasks:
# - sets the timestamps in a package to the commit date
hook() {
# If SOURCE_DATE_EPOCH is set, set mtimes to that timestamp.
if [ -n "$SOURCE_DATE_EPOCH" ]; then
msg_normal "$pkgver: setting mtimes to %s\n" "$(date --date "@$SOURCE_DATE_EPOCH")"
find $PKGDESTDIR -print0 | xargs -0 touch -h --date "@$SOURCE_DATE_EPOCH"
fi
}