replay: rng-builtin support
[qemu/ar7.git] / scripts / entitlement.sh
blobc540fa6435fb6a151e7d2400b28d27bd8f08571b
1 #!/bin/sh -e
3 # Helper script for the build process to apply entitlements
5 SRC="$1"
6 DST="$2"
7 ENTITLEMENT="$3"
9 trap 'rm "$DST.tmp"' exit
10 cp -af "$SRC" "$DST.tmp"
11 codesign --entitlements "$ENTITLEMENT" --force -s - "$DST.tmp"
12 mv "$DST.tmp" "$DST"
13 trap '' exit