mirror of
https://codeberg.org/privacy1st/arch
synced 2024-12-23 01:16:04 +01:00
97 lines
2.3 KiB
Markdown
97 lines
2.3 KiB
Markdown
# My personalized Arch Linux distribution
|
|
|
|
## Cloning this repository
|
|
|
|
```shell
|
|
git clone --recurse-submodules https://codeberg.org/privacy1st/arch && cd arch
|
|
```
|
|
|
|
Or equivalently:
|
|
|
|
```shell
|
|
git clone https://codeberg.org/privacy1st/arch
|
|
cd arch
|
|
git submodule update --init --recursive
|
|
```
|
|
|
|
## Build packages from source
|
|
|
|
Fork this repository.
|
|
|
|
Then and adjust the following files:
|
|
* [pkg/de-p1st-repo/arch-repo.cfg](pkg/de-p1st-repo/arch-repo.cfg)
|
|
* For your build-machine, adjust section `LOCAL MACHINE CONFIGURATION`: Add absolute path of folder [build-pkg/out](build-pkg/out) to array `LOCAL_PKG_DIRS`
|
|
as the build packages will be stored there.
|
|
* For your mirror-server, adjust section `REMOTE MIRROR SERVER CONFIGURATION` accordingly.
|
|
* [pkg/de-p1st-pacman/pacman.d/de-p1st](pkg/de-p1st-pacman/pacman.d/de-p1st)
|
|
* Add the address of your mirror-server.
|
|
|
|
Build [de-p1st-repo](pkg/de-p1st-repo):
|
|
|
|
```shell
|
|
sudo docker-compose -f build-pkg/docker-compose.yml run --rm makepkg de-p1st-repo
|
|
```
|
|
|
|
Install it on your build-machine and your mirror-server:
|
|
|
|
```shell
|
|
# On your local machine
|
|
sudo pacman -U out/de-p1st-repo*.pkg.tar.*
|
|
|
|
# Copy the package to your mirror-server and install it there as well!
|
|
```
|
|
|
|
Then you can start building all packages and adding them to your mirror-server:
|
|
|
|
```shell
|
|
./build-pkg/build-all
|
|
```
|
|
|
|
## Adding/removing AUR packages
|
|
|
|
There are several [AUR](https://aur.archlinux.org/) packages added as submodules inside [pkg](pkg).
|
|
See [build-pkg/pkglist-AUR.txt](build-pkg/pkglist-AUR.txt) for a full list.
|
|
|
|
They were added in the following manner:
|
|
|
|
```shell
|
|
AUR_PKG=xml2
|
|
git submodule add "https://aur.archlinux.org/${AUR_PKG}.git" pkg/"${AUR_PKG}"
|
|
# echo "Add ${AUR_PKG} to 'build-pkg/pkglist-AUR.txt'. Each line represents one build stage."
|
|
```
|
|
|
|
And can be removed with:
|
|
|
|
```shell
|
|
AUR_PKG=xml2
|
|
git rm -f pkg/"${AUR_PKG}"
|
|
# echo "Above command should remove ${AUR_PKG} from '.gitmodules'."
|
|
```
|
|
|
|
## Update submodules of AUR packages
|
|
|
|
To update all submodules and add those who received an update to
|
|
[build-pkg/pkglist.tmp](build-pkg/pkglist.tmp), run
|
|
|
|
```shell
|
|
./git-pull
|
|
```
|
|
|
|
## Build outdated AUR packages
|
|
|
|
The following command includes `./git-pull`.
|
|
|
|
```shell
|
|
./build-pkg/pull-and-build-outdated
|
|
```
|
|
|
|
|
|
## Install Arch Linux
|
|
|
|
See [pkg/de-p1st-installer/README.md](pkg/de-p1st-installer/README.md)
|
|
|
|
|
|
## Notes and TODOs
|
|
|
|
See [notes.md](notes.md)
|