blob: 0fba2d5d247c8a9361e71db67141fac808fdc891 (
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
# Maintainer: slbtty <shenlebantongying@gmail.com>
pkgname=goldendict-ng-git
pkgver=24.05.13.r5505.d30de48f
pkgrel=1
pkgdesc="The next generation GoldenDict (Supports Qt WebEngine & Qt6)."
arch=('i686' 'x86_64' 'aarch64')
url="https://github.com/xiaoyifang/goldendict-ng"
license=('GPL3')
depends=(
hunspell
libvorbis
libxtst
lzo
zlib
xz
libeb
tomlplusplus
fmt
opencc
xapian-core
libzim
qt6-base
qt6-svg
qt6-multimedia
qt6-webengine
qt6-speech
qt6-5compat
)
makedepends=(
git
cmake
ninja
qt6-tools
)
conflicts=('goldendict' 'goldendict-git' 'goldendict-svn' 'goldendict-git-opt')
provides=('goldendict')
replaces=('goldendict-svn' 'goldendict-git-opt' 'goldendict-webengine-git')
source=("$pkgname::git+https://github.com/xiaoyifang/goldendict.git")
md5sums=('SKIP')
pkgver() {
cd "$srcdir/$pkgname"
printf "%s.r%s.%s" "$(git describe --tags --abbrev=0 | cut -c 2-9)" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}
prepare() {
# This flag leads to crashs around Oct 2022, remove this in future.
export CXXFLAGS+=" -Wp,-U_GLIBCXX_ASSERTIONS"
}
build(){
cmake -B build_dir -S "$pkgname" -G Ninja \
-DCMAKE_INSTALL_PREFIX='/usr' \
-DUSE_SYSTEM_FMT=ON \
-DUSE_SYSTEM_TOML=ON \
-DWITH_FFMPEG_PLAYER=OFF \
-Wno-dev
cmake --build build_dir
}
package() {
DESTDIR="$pkgdir" cmake --install ./build_dir/
}
|