blob: 2812447bab7820aae34cfc9945543c406ee5f607 (
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
27
28
29
30
31
32
33
34
35
36
|
# Maintainer: everyx <lunt.luo#gmail.com>
pkgname=yacd-git
_pkgname=yacd
pkgver=0.3.8.r28.ge533e8e
pkgrel=1
pkgdesc='Yet Another Clash Dashboard'
arch=('any')
_repo="haishanh/$_pkgname"
url="https://github.com/$_repo"
license=('MIT')
makedepends=('git' 'pnpm')
optdepends=('clash: A rule-based tunnel in Go'
'sing-box: The universal proxy platform')
provides=("$_pkgname")
conflicts=("$_pkgname")
source=("$_pkgname::git+$url.git#branch=master")
sha256sums=(SKIP)
pkgver() {
cd "$_pkgname"
git describe --long | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g'
}
build () {
cd "$_pkgname" && pnpm i && pnpm build
}
package() {
cd "$_pkgname/public"
find . -type f -exec install -Dm 644 {} "$pkgdir/usr/share/$_pkgname"/{} \;
}
|