mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 10:32:13 +08:00
115 lines
5.0 KiB
Bash
115 lines
5.0 KiB
Bash
# Maintainer: Weng Xuetian <wengxt@gmail.com>
|
|
# Contributor: ponsfoot <cabezon dot hashimoto at gmail dot com>
|
|
|
|
## Mozc compile option
|
|
_bldtype=Release
|
|
|
|
_zipcoderel=201303
|
|
_protobuf_ver=2.5.0
|
|
|
|
pkgbase=mozc
|
|
pkgdesc="A Japanese Input Method for Chromium OS, Windows, Mac and Linux (the Open Source Edition of Google Japanese Input)"
|
|
pkgname=('mozc' 'fcitx-mozc')
|
|
pkgver=1.11.1502.102
|
|
_patchver=${pkgver}.1
|
|
pkgrel=1
|
|
arch=('i686' 'x86_64')
|
|
url="http://code.google.com/p/mozc/"
|
|
license=('BSD' 'custom')
|
|
makedepends=('pkg-config' 'python2' 'gtest' 'zinnia' 'qt' 'curl' 'fcitx')
|
|
source=(http://mozc.googlecode.com/files/mozc-${pkgver}.tar.bz2
|
|
http://downloads.sourceforge.net/pnsft-aur/ken_all-${_zipcoderel}.zip
|
|
http://downloads.sourceforge.net/pnsft-aur/jigyosyo-${_zipcoderel}.zip
|
|
http://protobuf.googlecode.com/files/protobuf-${_protobuf_ver}.tar.bz2
|
|
http://download.fcitx-im.org/fcitx-mozc/fcitx-mozc-${_patchver}.patch
|
|
http://download.fcitx-im.org/fcitx-mozc/fcitx-mozc-icon.tar.gz
|
|
)
|
|
sha1sums=('72c06d409da957d6696bbe1341c118ba4c267877'
|
|
'00d7d3fa1233ef75b0f919b9e4c10c9692d7743b'
|
|
'cdb8f3535cdac0c25d24c103107889b9fb4b9e18'
|
|
'62c10dcdac4b69cc8c6bb19f73db40c264cb2726'
|
|
'52da3ae38605bfcdc303734ac991ff29e17902dc'
|
|
'883f4fc489a9ed1c07d2d2ec37ca72509f04ea5d')
|
|
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgbase}-${pkgver}"
|
|
|
|
rm unix/fcitx -rf
|
|
patch -Np2 -i ${srcdir}/fcitx-mozc-${_patchver}.patch || return 1
|
|
|
|
# Generate zip code seed
|
|
msg "Generating zip code seed..."
|
|
python2 dictionary/gen_zip_code_seed.py --zip_code="${srcdir}/KEN_ALL.CSV" --jigyosyo="${srcdir}/JIGYOSYO.CSV" >> data/dictionary_oss/dictionary09.txt
|
|
msg "Done."
|
|
|
|
# Copy protobuf to be linked statically
|
|
cp -rf "${srcdir}/protobuf-${_protobuf_ver}" protobuf/files
|
|
|
|
msg "Starting make..."
|
|
|
|
# Get make -j option from $MAKEFLAGS
|
|
_jobs=`sed -n -e "s/.*--jobs=\([0-9]\+\).*/\1/p" -e "s/.*-j *\([0-9]\+\).*/\1/p" <<< "$MAKEFLAGS"`
|
|
_jobs=${_jobs:-1}
|
|
|
|
_targets="server/server.gyp:mozc_server gui/gui.gyp:mozc_tool "
|
|
_targets+="unix/fcitx/fcitx.gyp:fcitx-mozc "
|
|
|
|
GYP_DEFINES="enable_gtk_renderer=0" python2 build_mozc.py gyp --channel_dev=0
|
|
python2 build_mozc.py build_tools -c $_bldtype -j $_jobs
|
|
python2 build_mozc.py build -c $_bldtype -j $_jobs $_targets
|
|
|
|
# Extract liccense part of mozc
|
|
head -n 28 server/mozc_server.cc > LICENSE
|
|
}
|
|
|
|
package_mozc() {
|
|
pkgdesc="A Japanese Input Method for Chromium OS, Windows, Mac and Linux (the Open Source Edition of Google Japanese Input)"
|
|
arch=('i686' 'x86_64')
|
|
groups=('mozc-im')
|
|
depends=('curl' 'qt' 'zinnia')
|
|
replaces=('mozc-server' 'mozc-utils-gui')
|
|
conflicts=('mozc-server' 'mozc-utils-gui')
|
|
optdepends=('tegaki-models-zinnia-japanese: hand-writing recognition support')
|
|
|
|
cd "${srcdir}/${pkgbase}-${pkgver}"
|
|
install -D -m 755 out_linux/${_bldtype}/mozc_server "${pkgdir}/usr/lib/mozc/mozc_server"
|
|
install -m 755 out_linux/${_bldtype}/mozc_tool "${pkgdir}/usr/lib/mozc/mozc_tool"
|
|
install -d "${pkgdir}/usr/lib/mozc/documents/"
|
|
install -m 644 data/installer/*.html "${pkgdir}/usr/lib/mozc/documents/"
|
|
|
|
install -D -m 644 LICENSE "${pkgdir}/usr/share/licenses/${pkgbase}/LICENSE"
|
|
}
|
|
|
|
package_fcitx-mozc() {
|
|
pkgdesc="Fcitx module for Mozc"
|
|
arch=('i686' 'x86_64')
|
|
groups=('mozc-im')
|
|
depends=("mozc=${pkgver}" 'fcitx>=4.2.1')
|
|
|
|
cd "${srcdir}/${pkgbase}-${pkgver}"
|
|
for mofile in out_linux/${_bldtype}/obj/gen/unix/fcitx/po/*.mo
|
|
do
|
|
filename=`basename $mofile`
|
|
lang=${filename/.mo/}
|
|
install -D -m 644 "$mofile" "${pkgdir}/usr/share/locale/$lang/LC_MESSAGES/fcitx-mozc.mo"
|
|
done
|
|
|
|
install -D -m 755 out_linux/${_bldtype}/fcitx-mozc.so "${pkgdir}/usr/lib/fcitx/fcitx-mozc.so"
|
|
install -D -m 644 unix/fcitx/fcitx-mozc.conf "${pkgdir}/usr/share/fcitx/addon/fcitx-mozc.conf"
|
|
install -D -m 644 unix/fcitx/mozc.conf "${pkgdir}/usr/share/fcitx/inputmethod/mozc.conf"
|
|
|
|
|
|
install -d "${pkgdir}/usr/share/fcitx/mozc/icon"
|
|
install -m 644 "$srcdir/fcitx-mozc-icons/mozc.png" "${pkgdir}/usr/share/fcitx/mozc/icon/mozc.png"
|
|
install -m 644 "$srcdir/fcitx-mozc-icons/mozc-alpha_full.png" "${pkgdir}/usr/share/fcitx/mozc/icon/mozc-alpha_full.png"
|
|
install -m 644 "$srcdir/fcitx-mozc-icons/mozc-alpha_half.png" "${pkgdir}/usr/share/fcitx/mozc/icon/mozc-alpha_half.png"
|
|
install -m 644 "$srcdir/fcitx-mozc-icons/mozc-direct.png" "${pkgdir}/usr/share/fcitx/mozc/icon/mozc-direct.png"
|
|
install -m 644 "$srcdir/fcitx-mozc-icons/mozc-hiragana.png" "${pkgdir}/usr/share/fcitx/mozc/icon/mozc-hiragana.png"
|
|
install -m 644 "$srcdir/fcitx-mozc-icons/mozc-katakana_full.png" "${pkgdir}/usr/share/fcitx/mozc/icon/mozc-katakana_full.png"
|
|
install -m 644 "$srcdir/fcitx-mozc-icons/mozc-katakana_half.png" "${pkgdir}/usr/share/fcitx/mozc/icon/mozc-katakana_half.png"
|
|
install -m 644 "$srcdir/fcitx-mozc-icons/mozc-dictionary.png" "${pkgdir}/usr/share/fcitx/mozc/icon/mozc-dictionary.png"
|
|
install -m 644 "$srcdir/fcitx-mozc-icons/mozc-properties.png" "${pkgdir}/usr/share/fcitx/mozc/icon/mozc-properties.png"
|
|
install -m 644 "$srcdir/fcitx-mozc-icons/mozc-tool.png" "${pkgdir}/usr/share/fcitx/mozc/icon/mozc-tool.png"
|
|
}
|