blob: a28785a4f9a0bcfeefca16f5c149fa62f3cac3eb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Author: Dominik Heidler <dominik@heidler.eu>
# Maintainer: Lucas Magalhães <whoisroot@national.shitposting.agency>
pkgname=wg-info
pkgver=9b5c479
pkgrel=1
pkgdesc="A better wireguard status script"
arch=('any')
url="https://github.com/asdil12/wg-info"
license=('AGPL')
depends=('python')
provides=('wg-info')
source=("git+https://github.com/asdil12/wg-info.git")
sha256sums=(SKIP)
pkgver() {
git -C wg-info rev-parse --short HEAD
}
package() {
cd "$pkgname"
install -Dm755 -t "$pkgdir/usr/local/bin" wg-info
}
|