aboutsummaryrefslogtreecommitdiff
path: root/pkgs/repos/yeetfile.js
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/repos/yeetfile.js')
-rw-r--r--pkgs/repos/yeetfile.js29
1 files changed, 29 insertions, 0 deletions
diff --git a/pkgs/repos/yeetfile.js b/pkgs/repos/yeetfile.js
new file mode 100644
index 0000000..cf84320
--- /dev/null
+++ b/pkgs/repos/yeetfile.js
@@ -0,0 +1,29 @@
+rpm.build({
+ name: "techaro-repos-stable",
+ description: "Repo definitions for stable Techaro packages",
+ homepage: "https://techaro.lol",
+ license: "MIT",
+ goarch: "all",
+ version: "1.0.0",
+
+ build: (out) => {
+ file.install("./techaro-pkgs.pub.asc", `${out}/etc/pki/rpm-gpg/techaro.lol-keys/techaro-pkgs.asc`);
+ file.install("./techaro-root.pub.asc", `${out}/etc/pki/rpm-gpg/techaro.lol-keys/techaro-root.asc`);
+ file.install("./techaro-stable.repo", `${out}/etc/yum.repos.d/techaro-stable.repo`);
+ },
+});
+
+rpm.build({
+ name: "techaro-repos-unstable",
+ description: "Repo definitions for unstable Techaro packages",
+ homepage: "https://techaro.lol",
+ license: "MIT",
+ goarch: "all",
+ version: "1.0.0",
+
+ build: (out) => {
+ file.install("./techaro-pkgs.pub.asc", `${out}/etc/pki/rpm-gpg/techaro.lol-keys/techaro-pkgs.asc`);
+ file.install("./techaro-root.pub.asc", `${out}/etc/pki/rpm-gpg/techaro.lol-keys/techaro-root.asc`);
+ file.install("./techaro-stable.repo", `${out}/etc/yum.repos.d/techaro-stable.repo`);
+ },
+}); \ No newline at end of file