aboutsummarylogtreecommitdiffstats
path: root/README.md
blob: aebfb9b18bd310a10cb0b345c94e81ce92adefb2 (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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
# OpenConnect Git AUR Package

This repository contains the PKGBUILD and related files for the
[`openconnect-git` AUR Package](https://aur.archlinux.org/packages/openconnect-git).

It is based on the [Official Arch Package](https://gitlab.archlinux.org/archlinux/packaging/packages/openconnect/).

## Automated Updates

[![Update OpenConnect Package](https://github.com/astehlik/aur-openconnect-git/actions/workflows/update-package.yml/badge.svg)](https://github.com/astehlik/aur-openconnect-git/actions/workflows/update-package.yml)

This repository includes a GitHub Actions workflow that automatically checks for updates from
the upstream OpenConnect repository and rebuilds the package when new commits are available.

## Installation

### Using AUR Helper

```
yay -S openconnect-git
```

### Building Locally

```bash
# Clone this repository
git clone https://github.com/astehlik/aur-openconnect-git.git
cd aur-openconnect-git

# Build the package
makepkg -si

# Update .SRCINFO (if you made changes to PKGBUILD)
makepkg --printsrcinfo > .SRCINFO
```

## Contributing

This package is automatically maintained, but contributions are welcome:

### Testing Changes

```bash
# Test with dependency installation
makepkg -sf

# Validate PKGBUILD
namcap PKGBUILD

# Check built package
namcap *.pkg.tar.zst
```