blob: 3e5f0e6a898a4982719891b445b6be93c6f4d2ef (
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
|
# Maintainer: weilinfox <weilinfox at yzzi dot icu>
pkgname=thlink-broker
pkgver=0.0.11
pkgrel=1
pkgdesc="Touhou Project Game Netplay Tool (broker)"
arch=('x86_64' 'aarch64')
url="https://github.com/weilinfox/youmu-thlink/"
license=('AGPL3')
depends=()
makedepends=('go')
source=("https://github.com/weilinfox/youmu-thlink/archive/refs/tags/v$pkgver.tar.gz")
md5sums=("7d6d2d7f9f2193f065757209fa3f316f")
build() {
cd "youmu-thlink-$pkgver"
go build -o ./build/thlink-broker ./broker/
}
package() {
cd "youmu-thlink-$pkgver"
install -Dm755 ./build/thlink-broker $pkgdir/usr/bin/thlink-broker
}
|