diff options
author | Nocifer | 2024-05-13 18:31:09 +0300 |
---|---|---|
committer | Nocifer | 2024-05-13 18:31:09 +0300 |
commit | 7351091f41f20c613667d471f29eb79652e840bb (patch) | |
tree | b45e587cdcc97672a6d20ba8bc966627822864c4 | |
parent | 2d857e03c92678f3cb6c823ab88fe6762521aaa1 (diff) | |
download | aur-7351091f41f20c613667d471f29eb79652e840bb.tar.gz |
v=2.30.5448.102,r=2
-rw-r--r-- | .SRCINFO | 5 | ||||
-rw-r--r-- | PKGBUILD | 11 |
2 files changed, 11 insertions, 5 deletions
@@ -1,7 +1,7 @@ pkgbase = fcitx5-mozc-ut pkgdesc = Mozc module for Fcitx5 pkgver = 2.30.5448.102 - pkgrel = 1 + pkgrel = 2 url = https://github.com/fcitx/mozc arch = x86_64 license = Apache-2.0 AND BSD-2-Clause AND BSD-3-Clause AND GPL-2.0-or-later AND MIT AND NAIST-2003 AND Unicode-3.0 AND LicenseRef-Okinawa-Dictionary @@ -9,6 +9,7 @@ pkgbase = fcitx5-mozc-ut makedepends = git makedepends = python makedepends = qt6-base + makedepends = gcc13 depends = fcitx5 depends = mozc>=2.30.5448.102 optdepends = fcitx5-configtool @@ -17,6 +18,6 @@ pkgbase = fcitx5-mozc-ut options = !distcc options = !ccache source = fcitx5-mozc-ut-git::git+https://github.com/fcitx/mozc.git#commit=8e7e34ed0b2886639ed84e0f56732576f3c7a01a - sha256sums = SKIP + sha256sums = 0d9604b2612d3efa2dcf3b8b27b2a6c185be1a2a3677a84fcc8147b520bfde4e pkgname = fcitx5-mozc-ut @@ -5,19 +5,19 @@ pkgname='fcitx5-mozc-ut' pkgver=2.30.5448.102 -pkgrel=1 +pkgrel=2 pkgdesc='Mozc module for Fcitx5' arch=('x86_64') url='https://github.com/fcitx/mozc' license=('Apache-2.0 AND BSD-2-Clause AND BSD-3-Clause AND GPL-2.0-or-later AND MIT AND NAIST-2003 AND Unicode-3.0 AND LicenseRef-Okinawa-Dictionary') depends=('fcitx5' 'mozc>=2.30.5448.102') -makedepends=('bazel' 'git' 'python' 'qt6-base') +makedepends=('bazel' 'git' 'python' 'qt6-base' 'gcc13') optdepends=('fcitx5-configtool') provides=('fcitx5-mozc=2.30.5448.102') conflicts=('fcitx5-mozc') options=(!distcc !ccache) source=("${pkgname}-git::git+https://github.com/fcitx/mozc.git#commit=8e7e34ed0b2886639ed84e0f56732576f3c7a01a") -sha256sums=('SKIP') +sha256sums=('0d9604b2612d3efa2dcf3b8b27b2a6c185be1a2a3677a84fcc8147b520bfde4e') prepare() { cd ${pkgname}-git/src @@ -31,6 +31,11 @@ build() { unset ANDROID_NDK_HOME unset ANDROID_HOME export JAVA_HOME='/usr/lib/jvm/java-11-openjdk/' + + # Temp fix for GCC 14 + export CC='/usr/bin/gcc-13' + export CXX='/usr/bin/g++-13' + bazel build unix/fcitx5:fcitx5-mozc.so unix/icons --config oss_linux --compilation_mode opt } |