blob: 03e5bf2fb0f48e8d8d11b6e12397a61601c2cb7a (
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
37
38
39
40
41
42
43
44
|
# Maintainer: Puqns67 <me@puqns67.icu>
# Contributor: yuioto <yuiotochan@outlook.com>
# This PKGBUILD is base on the AUR repo wiliwili-git, by yuioto <yuiotochan@outlook.com>
pkgname=wiliwili
pkgver=1.5.0
pkgrel=1
pkgdesc='专为手柄控制设计的第三方跨平台B站客户端'
arch=('x86_64' 'aarch64')
url='https://github.com/xfangfang/wiliwili'
license=('GPL-3.0-or-later')
depends=('curl' 'dbus' 'gcc-libs' 'glibc' 'hicolor-icon-theme' 'libwebp' 'mpv' 'opencc' 'openssl' 'pystring' 'tinyxml2' 'zlib')
makedepends=('cmake' 'git' 'libxi' 'libxinerama' 'ninja' 'python' 'wayland-protocols')
source=("${pkgname}"::"git+${url}.git#tag=v${pkgver}")
b2sums=('0f667955b33cb082d49d2844eb3949ff1c57f5fb8e7cc52d0ff84e59052e95bc8514678200970a1c3d3ac47bc6acec6cb4e518dc97681d342aff855da16790ab')
prepare() {
git -C "${srcdir}/${pkgname}" submodule update --init --recursive
cmake \
-B "${srcdir}/build" \
-D CMAKE_BUILD_TYPE=Release \
-D CMAKE_INSTALL_PREFIX='/usr' \
-D INSTALL=ON \
-D PLATFORM_DESKTOP=ON \
-D USE_SYSTEM_CURL=ON \
-D USE_SYSTEM_PYSTRING=ON \
-D USE_SYSTEM_OPENCC=ON \
-D USE_SYSTEM_TINYXML2=ON \
-D USE_SYSTEM_SDL2=ON \
-D GLFW_BUILD_WAYLAND=ON \
-D GLFW_BUILD_X11=ON \
-G Ninja \
-S "${srcdir}/${pkgname}"
}
build() {
cmake --build "${srcdir}/build"
}
package() {
DESTDIR="${pkgdir}" cmake --install "${srcdir}/build"
}
|