update confs and add vpn package

This commit is contained in:
2025-08-06 11:41:29 +01:00
parent fed0835ad7
commit 13b1fd9ba9
4 changed files with 154 additions and 2 deletions

33
vpn/PKGBUILD Normal file
View File

@ -0,0 +1,33 @@
# Maintainer: Your Name <fergus@molloy.xyz>
pkgname=vpn
pkgver=1.0.0
pkgrel=1
epoch=
pkgdesc="Bash script to manage wireguard vpn connections"
arch=(any)
url=""
license=('Unlicense')
groups=()
depends=(wireguard-tools)
makedepends=()
checkdepends=()
optdepends=()
provides=()
conflicts=()
replaces=()
backup=()
options=()
install=
changelog=
source=("vpn")
noextract=("vpn")
sha256sums=(
4049e2b082f88a06ef0890498f556018d07939d5f2fb54a9d409fbeb8023be47
)
validpgpkeys=()
package() {
mkdir -p "$pkgdir"
install -D -m 755 vpn "${pkgdir}/usr/bin/vpn"
}