mirror of
https://github.com/archlinux/aur.git
synced 2026-02-08 21:43:04 +01:00
Initial upload: v1.0.0
This commit is contained in:
commit
3e4d88ee49
2 changed files with 36 additions and 0 deletions
15
.SRCINFO
Normal file
15
.SRCINFO
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
pkgbase = wgtray
|
||||
pkgdesc = WireGuard system tray client for easy VPN switching
|
||||
pkgver = 1.0.0
|
||||
pkgrel = 1
|
||||
url = https://github.com/0xNatal/wgtray
|
||||
arch = any
|
||||
license = GPL-3.0-or-later
|
||||
depends = python-pyqt6
|
||||
depends = wireguard-tools
|
||||
depends = polkit
|
||||
depends = qt6-svg
|
||||
source = wgtray-1.0.0.tar.gz::https://github.com/0xNatal/wgtray/archive/v1.0.0.tar.gz
|
||||
sha256sums = 6d97b85b9a6d1bff998c0617bee7aa46779f90487224754771a47a5549434a95
|
||||
|
||||
pkgname = wgtray
|
||||
21
PKGBUILD
Normal file
21
PKGBUILD
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
# Maintainer: Natal Bumann wgtray@rcklt.ch
|
||||
pkgname=wgtray
|
||||
pkgver=1.0.0
|
||||
pkgrel=1
|
||||
pkgdesc="WireGuard system tray client for easy VPN switching"
|
||||
arch=('any')
|
||||
url="https://github.com/0xNatal/wgtray"
|
||||
license=('GPL-3.0-or-later')
|
||||
depends=(
|
||||
'python-pyqt6'
|
||||
'wireguard-tools'
|
||||
'polkit'
|
||||
'qt6-svg'
|
||||
)
|
||||
source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
|
||||
sha256sums=('6d97b85b9a6d1bff998c0617bee7aa46779f90487224754771a47a5549434a95')
|
||||
|
||||
package() {
|
||||
cd "$pkgname-$pkgver"
|
||||
make DESTDIR="$pkgdir" PREFIX=/usr install
|
||||
}
|
||||
Loading…
Add table
Reference in a new issue