mirror of
https://code.mensbeam.com/MensBeam/Arsse.git
synced 2024-12-22 21:22:40 +00:00
19 lines
592 B
PHP
19 lines
592 B
PHP
<?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' => "*.pkg.tar.zst",
|
|
//],
|
|
'deb' => [
|
|
'type' => "debian",
|
|
'repos' => ["http://ftp.ca.debian.org/debian/?dist=buster&component=main"],
|
|
'keys' => [],
|
|
'dist' => "debian10",
|
|
'recipe' => "*.dsc",
|
|
'output' => "*.deb",
|
|
],
|
|
];
|