blob: 1a19ef4291376f781c0cb0ddb0e52abd0e125b59 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
/* AUR configuration file */
#define AUR_CONFIG "/srv/aur/web/lib/config.inc.php"
#define CONFIG_KEY_HOST "AUR_db_host"
#define CONFIG_KEY_USER "AUR_db_user"
#define CONFIG_KEY_PASSWD "AUR_db_pass"
#define CONFIG_KEY_DB "AUR_db_name"
/* libalpm options */
#define ALPM_DBPATH "/var/lib/aurblup/"
#define ALPM_MIRROR "ftp://mirrors.kernel.org/archlinux/%s/os/x86_64"
static const char *alpm_repos[] = {
"core",
"community",
"community-testing",
"extra",
"multilib",
"testing"
};
|