Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/marokiki/arch-repos

It contains the builded packages for Arch User Repository (AUR).
https://github.com/marokiki/arch-repos

archlinux aur dockerfile github-actions

Last synced: about 1 month ago
JSON representation

It contains the builded packages for Arch User Repository (AUR).

Awesome Lists containing this project

README

        

# arch-repos
This reposity is derived from https://github.com/rf-castle/my-arch-packages.

It contains the builded packages for Arch User Repository (AUR).

You should create a new repository for your own packages.

## How to build
1. Clone the repository:
```
git clone https://github.com/marokiki/arch-repos.git
```

2. Add the package you want to build by git submodule:
```
git submodule add https://aur.archlinux.org/.git packages/
git submodule update --init --recursive
```

3. Push the changes to the repository:
```
git add .
git commit -m "Add "
git push
```

4. GitHub Actions will build the package and upload it to the repository.

## How to use
1. Add the following lines to your `/etc/pacman.conf`:
```
[parrot]
SigLevel = Optional TrustAll
Server = https://marokiki.github.io/arch-repos/
```

2. Update the package database:
```
sudo pacman -Sy
```

3. Install the package you want:
```
sudo pacman -S
```

## To Do
- [ ] Add automatic package update
- A package should be updated when the upstream repository is updated
- Only updated packages should be built