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/hypa/sign.sh

17 lines
344 B
Bash
Executable file

#!/bin/bash
REPOSITORY_DIR=$1
USERNAME=$2
EMAIL=$3
PRIVATE_KEY="private.pem"
xbps-rindex -a ${REPOSITORY_DIR}/*.xbps
xbps-rindex --sign \
--signedby "${USERNAME} <${EMAIL}>" \
--privkey ${PRIVATE_KEY} \
${REPOSITORY_DIR}
for pkg in $(ls -d -1 ${REPOSITORY_DIR}/*.xbps); do
xbps-rindex --privkey ${PRIVATE_KEY} --sign-pkg ${pkg}
done