desktop/mozc/PKGBUILD

137 lines
5.8 KiB
Bash

# Maintainer: Weng Xuetian <wengxt@gmail.com>
# Contributor: ponsfoot <cabezon dot hashimoto at gmail dot com>
## Mozc compile option
_bldtype=Release
#_bldtype=Debug
## NOTE there is a issue with ken_all.csv v201311 and v201312:
## http://code.google.com/p/mozc/issues/detail?id=205
## therefore use 201310 version instead
_zipcoderel=201310
_protobuf_ver=2.5.0
_gyp_rev=1775
pkgbase=mozc
pkgver=1.13.1651.102
_patchver=${pkgver}.1
pkgrel=1
pkgdesc="A Japanese Input Method for Chromium OS, Windows, Mac and Linux (the Open Source Edition of Google Japanese Input)"
pkgname=('mozc' 'fcitx-mozc')
arch=('x86_64')
url="http://code.google.com/p/mozc/"
license=('BSD' 'custom')
makedepends=('pkg-config' 'python2' 'gtest' 'zinnia' 'qt' 'curl' 'fcitx')
changelog=ChangeLog
source=(http://mozc.googlecode.com/files/mozc-${pkgver}.tar.bz2
http://downloads.sourceforge.net/project/pnsft-aur/mozc/gyp-${_gyp_rev}.tar.xz
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
### icons seem removed from fcitx-im.org/...
#http://download.fcitx-im.org/fcitx-mozc/fcitx-mozc-icon.tar.gz
### ...use my icons-backup:
https://dl.dropboxusercontent.com/u/66275722/Chakra/fcitx-mozc-icons.tar.gz
)
sha1sums=('24680b3d350e5332f2235b9c1342127f6ef0fd63'
'f0795090078fd870b116e702f0ca50017db7940d'
'73cc37839c22f4c52392d7d32bbc59ff63156481'
'5640ba09ea7c509da688de292ed1b5bbf1d1e8d5'
'62c10dcdac4b69cc8c6bb19f73db40c264cb2726'
'f5719fadcbf1a85c0ea40dea234aaaea9988dafc'
'd1d57c3bac80f2a97569654468f46b790f8c9e38')
build() {
cd "${srcdir}/${pkgbase}-${pkgver}"
# Apply fcitx patch
rm unix/fcitx -rf
patch -Np2 -i ${srcdir}/fcitx-mozc-${_patchver}.patch || return 1
# Adjust to use python2
find . -name \*.py -type f -exec sed -i -e "1s|python.*$|python2|" {} +
find . -regex '.*\.gypi?$' -type f -exec sed -i -e "s|'python'|'python2'|g" {} +
# Copy gyp
cp -rf "${srcdir}"/gyp-${_gyp_rev}/* third_party/gyp
# Copy protobuf to be linked statically
cp -rf "${srcdir}/protobuf-${_protobuf_ver}" third_party/protobuf
# 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."
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 "
QTDIR=/usr 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=('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"
}