blob: 050346984daf454bc24908700c987e3b51261851 (
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
|
# Maintainer: Rhinoceros <https://aur.archlinux.org/account/rhinoceros>
# Contributor: slbtty <shenlebantongying@gmail.com>
pkgname=goldendict-ng
pkgver=25.2.0
true_ver=25.02.0-Release.e895b18c
pkgrel=2
pkgdesc='The Next Generation GoldenDict (supports Qt WebEngine & Qt6)'
arch=('i686' 'x86_64' 'aarch64')
url='https://github.com/xiaoyifang/goldendict-ng'
license=('GPL-3.0-or-later')
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-ng-git' 'goldendict-svn' 'goldendict-git-opt')
provides=('goldendict')
replaces=('goldendict-svn' 'goldendict-git-opt' 'goldendict-webengine-git')
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/xiaoyifang/goldendict-ng/archive/refs/tags/v${true_ver}.tar.gz")
sha256sums=('c7d6acbcab6fb097231981d0748164c3e389295b8f02c1bbcd17c317d7f27659')
prepare() {
# This flag leads to crashes around Oct 2022; remove this in future.
export CXXFLAGS+=" -Wp,-U_GLIBCXX_ASSERTIONS"
}
build(){
cd "$srcdir/$pkgname-${true_ver}"
cmake -B build_dir -S . -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() {
cd "$srcdir/$pkgname-${true_ver}"
DESTDIR="$pkgdir" cmake --install ./build_dir/
}
|