Initial commit

This commit is contained in:
2026-02-24 19:15:19 +02:00
commit 094fb2daa8
6 changed files with 40 additions and 0 deletions
+3
View File
@@ -0,0 +1,3 @@
# Ignore BPM archives and signatures
*.bpm
*.bpm.sig
+4
View File
@@ -0,0 +1,4 @@
#!/bin/sh
# Ignore this package
echo "ignore"
+9
View File
@@ -0,0 +1,9 @@
name: tide-keyring
description: BPM keyring for the official Tide Linux repositories
version: 26.02.24
revision: 1
maintainers:
- [email protected]
architecture: any
output_architecture: any
type: source
+13
View File
@@ -0,0 +1,13 @@
-----BEGIN PGP PUBLIC KEY BLOCK-----
mDMEaM7v7xYJKwYBBAHaRw8BAQdAWNPiRt740C8T2RpCDeLs8HLq5xmisoKagZOE
tYjk7Pa0IEVudW1EZXYgPGVudW1kZXZAZW51bWVyYXRlZC5kZXY+iJMEExYKADsW
IQTOjfQ4yORMT5Y4KE0665zQgLtZHQUCaM7v7wIbAwULCQgHAgIiAgYVCgkICwIE
FgIDAQIeBwIXgAAKCRA665zQgLtZHQg9AQDJ3S+oGGCOBtfT/LseYuHa6b+JTJYB
xOLb0mZ8C44zyQEA61MNYmcij27vQ98E9MQGfcAL83aJdDo6CZaLXGFJ7wO4OARo
zu/vEgorBgEEAZdVAQUBAQdADY9PiZh+9Rstl25Wsn4PnatTV67lTbmKRWkEX3Bx
MkIDAQgHiHgEGBYKACAWIQTOjfQ4yORMT5Y4KE0665zQgLtZHQUCaM7v7wIbDAAK
CRA665zQgLtZHamQAQC1QHmcvcCb+0QHL6Yq1SfQ6apK6yF6JtwQwva49AK3JAD/
chKRdlrhi15z52hLxPB9tCJpaFEs7B6Lcn+bNBSltg0=
=pZdY
-----END PGP PUBLIC KEY BLOCK-----
+1
View File
@@ -0,0 +1 @@
CE8DF438C8E44C4F9638284D3AEB9CD080BB591D:5:
+10
View File
@@ -0,0 +1,10 @@
# This is the source.sh script. It is executed by BPM in a temporary directory when compiling a source package
# BPM Expects the source code to be extracted into the automatically created 'source' directory which can be accessed using $BPM_SOURCE
# BPM Expects the output files to be present in the automatically created 'output' directory which can be accessed using $BPM_OUTPUT
# The package function is executed in the source directory
# This function is used to move the compiled files into the output directory
package() {
install -Dm644 "$BPM_WORKDIR"/tidelinux.pgp "$BPM_OUTPUT"/var/lib/bpm/keyrings/tidelinux.pgp
install -Dm644 "$BPM_WORKDIR"/tidelinux.trustdb "$BPM_OUTPUT"/var/lib/bpm/keyrings/tidelinux.trustdb
}