summaryrefslogtreecommitdiff
path: root/README.md
blob: f4f30ea888291a8943b6487089bb73688ceacebe (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
## aports

my own alpine aport packages

### requirements

only docker is needed, since the build environment is run inside docker

### signing keys

to build aports, you first need a signing key pair (if you dont have one).
```
openssl genrsa -out key.rsa 2048
openssl rsa -in key.rsa -pubout > key.rsa.pub
```

if you already have keys, or you generated them somewhere else, make sure to update their locations in `build.env`

### building

to compile the APKs run

```
make build
```

the packages should not be outputed in the ./out folder