Date: Saturday, January 21, 2023 @ 15:47:53
Author: felixonmars
Revision: 1387452
archrelease: copy trunk to community-staging-x86_64
Added:
fcitx5-chinese-addons/repos/community-staging-x86_64/
fcitx5-chinese-addons/repos/community-staging-x86_64/PKGBUILD
(from rev 1387451, fcitx5-chinese-addons/trunk/PKGBUILD)
fcitx5-chinese-addons/repos/community-staging-x86_64/keys/
----------+
PKGBUILD | 35 +++++++++++++++++++++++++++++++++++
1 file changed, 35 insertions(+)
Copied: fcitx5-chinese-addons/repos/community-staging-x86_64/PKGBUILD (from rev
1387451, fcitx5-chinese-addons/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD (rev 0)
+++ community-staging-x86_64/PKGBUILD 2023-01-21 15:47:53 UTC (rev 1387452)
@@ -0,0 +1,35 @@
+# Maintainer: Felix Yan <[email protected]>
+# Contributor: csslayer <wengxt AT gmail com>
+
+pkgname=fcitx5-chinese-addons
+pkgver=5.0.16
+pkgrel=2
+pkgdesc="Addons related to Chinese, including IME previous bundled inside
fcitx4"
+arch=('x86_64')
+url="https://github.com/fcitx/fcitx5-chinese-addons"
+license=('GPL')
+conflicts=('fcitx')
+depends=('curl' 'fcitx5-qt' 'libime' 'opencc' 'qt5-webengine')
+makedepends=('boost' 'extra-cmake-modules' 'fcitx5-lua' 'ninja')
+optdepends=('fcitx5-lua: Lua and imeapi support from pinyin')
+source=("https://download.fcitx-im.org/fcitx5/$pkgname/$pkgname-${pkgver}_dict.tar.xz"{,.sig})
+sha512sums=('224404f9bbff4ea60d7d483ec597ba03cfbb95953b06ae2d13ae772ce042cd8920ae84a790df19acd7877c0b7c8814646c3e992913b8fe522dc657fb45b163de'
+ 'SKIP')
+validpgpkeys=('2CC8A0609AD2A479C65B6D5C8E8B898CBF2412F9') # Weng Xuetian
<[email protected]>
+
+build() {
+ cd $pkgname-$pkgver
+
+ cmake -GNinja -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_INSTALL_LIBDIR=/usr/lib
-DUSE_WEBKIT=Off .
+ ninja
+}
+
+check() {
+ cd $pkgname-$pkgver
+ ninja test
+}
+
+package() {
+ cd $pkgname-$pkgver
+ DESTDIR="$pkgdir" ninja install
+}