mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
38 lines
883 B
Bash
38 lines
883 B
Bash
# $Id$
|
|
# Maintainer: Felix Yan <felixonmars@gmail.com>
|
|
# Contributor: Thomas Dziedzic < gostrc at gmail >
|
|
|
|
pkgname=sunpinyin
|
|
pkgver=3.0.0rc1
|
|
_tag=v3.0.0-rc1
|
|
pkgrel=1
|
|
arch=('i686' 'x86_64')
|
|
pkgdesc="Statistical Language Model based pinyin IME by Sun"
|
|
license=('LGPL')
|
|
url="http://sunpinyin.googlecode.com"
|
|
depends=('sqlite3' 'make' 'gcc-libs')
|
|
optdepends=('sunpinyin-data: Statistical language model data from open-gram project for sunpinyin')
|
|
replaces=('sunpinyin-git<=20120603')
|
|
makedepends=('git' 'scons' 'intltool')
|
|
source=("git://github.com/sunpinyin/sunpinyin.git#tag=$_tag")
|
|
md5sums=("SKIP")
|
|
|
|
prepare() {
|
|
cd "$srcdir/$pkgname"
|
|
sed -i -e "1s|python|python2|" python/*.py python/importer/*.py
|
|
}
|
|
|
|
build() {
|
|
cd "$srcdir/$pkgname"
|
|
scons \
|
|
--prefix=/usr
|
|
}
|
|
|
|
package() {
|
|
cd "$srcdir/$pkgname"
|
|
scons \
|
|
--prefix=/usr \
|
|
--install-sandbox="$pkgdir" \
|
|
install
|
|
}
|