mirror of
https://github.com/archlinux/aur.git
synced 2026-02-08 13:12:02 +01:00
Initial AUR package for njuconnect binary
This commit is contained in:
commit
7ca08192ac
3 changed files with 30 additions and 0 deletions
11
.SRCINFO
Normal file
11
.SRCINFO
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
pkgbase = njuconnect
|
||||
pkgdesc = NJUConnect - A cross-platform VPN client for Nanjing University
|
||||
pkgver = 14
|
||||
pkgrel = 1
|
||||
url = https://github.com/lyc8503/NJUConnect
|
||||
arch = x86_64
|
||||
license = unknown
|
||||
source = njuconnect-14::https://github.com/lyc8503/NJUConnect/releases/download/TestBuild14/EasierConnect-linux-amd64.zip
|
||||
sha256sums = 9a686c3861a04132ce7b14fd240550e88f60e2b0f5d4fc1186519aa9bd2735ba
|
||||
|
||||
pkgname = njuconnect
|
||||
4
.gitignore
vendored
Normal file
4
.gitignore
vendored
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
*
|
||||
PKGBUILD
|
||||
.SRCINFO
|
||||
.gitignore
|
||||
15
PKGBUILD
Normal file
15
PKGBUILD
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
pkgname=njuconnect
|
||||
pkgver=14
|
||||
pkgrel=1
|
||||
pkgdesc="NJUConnect - A cross-platform VPN client for Nanjing University"
|
||||
arch=('x86_64')
|
||||
url="https://github.com/lyc8503/NJUConnect"
|
||||
license=('unknown')
|
||||
depends=()
|
||||
makedepends=()
|
||||
source=("njuconnect-${pkgver}::https://github.com/lyc8503/NJUConnect/releases/download/TestBuild${pkgver}/EasierConnect-linux-amd64.zip")
|
||||
sha256sums=('9a686c3861a04132ce7b14fd240550e88f60e2b0f5d4fc1186519aa9bd2735ba')
|
||||
|
||||
package() {
|
||||
install -Dm755 "EasierConnect" "${pkgdir}/usr/bin/njuconnect"
|
||||
}
|
||||
Loading…
Add table
Reference in a new issue