blob: 3dea85b1b9479b238c4795d06e7ed7470e0b8c92 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
# AUR PKG Builder
Docker base AUR Package builder for local arch repo
## Locations
* Output, db and webroot `/srv/arch/`
* Dockerfile and scripts for the Container ``
* Scripts ``
## nginx
Config in `nginx.conf`
```nginx
# in http block
include /etc/nginx/arch.conf;
#include /etc/nginx/arch_ssl.conf;
```
## Workflow
Provided: Package name
* search AUR for package (exact match only!)
* build dependency tree (also search with provided, then there is no exact match)
* prioritize packages in official repos. Don't build them.
* Add all AUR-PKGs in tree to to-build-list
* MAKEPKG ur way thourhg
|