aboutsummaryrefslogtreecommitdiff
path: root/linux
diff options
context:
space:
mode:
authorAqua-sama <aqua@iserlohn-fortress.net>2018-12-06 12:22:43 +0100
committerAqua-sama <aqua@iserlohn-fortress.net>2018-12-06 12:22:43 +0100
commit2d711650e210acee3323e747cbea628d41451464 (patch)
tree4af270180c0fb19283473d8963c962f2b6350240 /linux
parentAdd builtins::version, ::build and ::help (diff)
downloadsmolbote-2d711650e210acee3323e747cbea628d41451464.tar.xz
PKGBUILD: add gpg key signing for plugins
Diffstat (limited to 'linux')
-rw-r--r--linux/makepkg/PKGBUILD9
1 files changed, 9 insertions, 0 deletions
diff --git a/linux/makepkg/PKGBUILD b/linux/makepkg/PKGBUILD
index 9a45114..67b0245 100644
--- a/linux/makepkg/PKGBUILD
+++ b/linux/makepkg/PKGBUILD
@@ -74,5 +74,14 @@ package() {
# Install
cd $srcdir/build
DESTDIR="$pkgdir" ninja install
+
+ msg Creating signing key in $srcdir/build/gpg
+ mkdir $srcdir/build/gpg
+ gpg2 --homedir=$srcdir/build/gpg --batch --generate-key $srcdir/smolbote/tools/gpgkey.preset
+
+ msg Signing plugins
+ for so in $pkgdir/usr/local/lib/smolbote/plugins/*.so; do
+ gpg2 --homedir=$srcdir/build/gpg --batch --yes --local-user=smolbote@localhost --detach-sign --output=$so.sig $so
+ done
}