blob: 90e5511b86d5e5ff2f2376d7c9b40511a4ce6a2e (
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.6.0
true_ver=25.06.0-Release.8a87a79b
pkgrel=1
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=('cae2b5993e30eccf192261786605eda904e22577b1ec0cedd2191d9500b4e091')
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/
}
|