1
1
Fork 0
mirror of https://code.mensbeam.com/MensBeam/Arsse.git synced 2025-01-09 01:12:41 +00:00
Arsse/release/settings.default.php

20 lines
629 B
PHP
Raw Normal View History

2021-07-19 16:59:32 +00:00
<?php
return [
'arch' => [
'type' => "arch",
'repos' => ["http://mirror.csclub.uwaterloo.ca/archlinux/core/os/x86_64/", "http://mirror.csclub.uwaterloo.ca/archlinux/extra/os/x86_64/"],
'keys' => [],
'dist' => "arch",
'recipe' => "PKGBUILD",
'output' => "/usr/src/packages/ARCHPKGS/*.pkg.tar.zst",
],
'debian' => [
2021-07-19 16:59:32 +00:00
'type' => "debian",
'repos' => ["http://ftp.ca.debian.org/debian/?dist=buster&component=main"],
'keys' => [],
'dist' => "debian10",
'recipe' => "*.dsc",
'output' => "/usr/src/packages/DEBS/*.deb",
2021-07-19 16:59:32 +00:00
],
];