Date: Friday, February 10, 2023 @ 01:31:31
Author: felixonmars
Revision: 1399364
archrelease: copy trunk to community-testing-x86_64
Added:
maliit-keyboard/repos/community-testing-x86_64/
maliit-keyboard/repos/community-testing-x86_64/PKGBUILD
(from rev 1399363, maliit-keyboard/trunk/PKGBUILD)
----------+
PKGBUILD | 27 +++++++++++++++++++++++++++
1 file changed, 27 insertions(+)
Copied: maliit-keyboard/repos/community-testing-x86_64/PKGBUILD (from rev
1399363, maliit-keyboard/trunk/PKGBUILD)
===================================================================
--- community-testing-x86_64/PKGBUILD (rev 0)
+++ community-testing-x86_64/PKGBUILD 2023-02-10 01:31:31 UTC (rev 1399364)
@@ -0,0 +1,27 @@
+# Maintainer: Antonio Rojas <[email protected]>
+
+pkgname=maliit-keyboard
+pkgver=2.3.1
+pkgrel=2
+pkgdesc='Virtual keyboard based on Maliit framework'
+arch=(x86_64)
+url='https://maliit.github.io/'
+license=(LGPL)
+depends=(maliit-framework hunspell presage qt5-multimedia qt5-quickcontrols2
qt5-feedback)
+makedepends=(cmake libpinyin anthy libchewing)
+optdepends=('anthy: japanese language support' 'libpinyin: chinese language
support' 'libchewing: chinese language support')
+source=(https://github.com/maliit/keyboard/archive/$pkgver/$pkgname-$pkgver.tar.gz)
+sha256sums=('c3e1eb985b8ae7ce4e3e28412b7e797ff5db437ccd327e0d852a3c37f17fe456')
+
+build() {
+ cmake -B build -S keyboard-$pkgver \
+ -DCMAKE_INSTALL_PREFIX=/usr \
+ -DCMAKE_CXX_STANDARD=14 \
+ -Denable-tests=OFF \
+ -DHUNSPELL_DICT_PATH=/usr/share/myspell/dicts
+ cmake --build build
+}
+
+package() {
+ DESTDIR="$pkgdir" cmake --install build
+}