blob: 8014be57fb2906e8ae167f9b2fab0b001c2f3cc9 (
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
|
# Arch Linux Packages
A collection of all the Arch Linux packages I maintain, currently AUR packages only.
Should be identical to https://aur.archlinux.org/packages/?SeB=m&K=yuvadm
Feel free to open issues/PRs in this repository for fixes to be merged into the AUR.
## Usage
### New AUR Package
```bash
$ git remote add -f pkgname ssh://aur@aur.archlinux.org/pkgname.git
$ git merge -s ours --no-commit pkgname/master
$ git read-tree --prefix=pkgname/ -u pkgname/master
$ git commit -m "Add pkgname subtree"
```
### Synchronizing Existing Package Updates
```bash
$ git pull -s subtree pkgname master
```
|