├── .SRCINFO ├── .gitignore ├── PKGBUILD └── README.md /.SRCINFO: -------------------------------------------------------------------------------- 1 | pkgbase = fcitx-sogouimebs 2 | pkgdesc = Sogou Pinyin for Linux 3 | pkgver = 2.0.0.38+0428.1 4 | pkgrel = 1 5 | url = https://pinyin.sogou.com/linux/ 6 | arch = x86_64 7 | license = custom 8 | depends = fcitx 9 | depends = opencc 10 | depends = libidn11 11 | depends = lsb-release 12 | depends = xorg-xprop 13 | depends = qt5-webkit 14 | depends = fcitx-qt5 15 | conflicts = fcitx-sogoupinyin 16 | source = http://archive.ubuntukylin.com/ukui/pool/main/s/sogouimebs/sogouimebs_2.0.0.38+0428.1_amd64.deb 17 | sha256sums = 80dbf56c876ec0c2e058f699bddc2e1b103e7671f8884e357b493c17799acc9d 18 | 19 | pkgname = fcitx-sogouimebs 20 | 21 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | pkg 2 | src 3 | *.pkg.tar.xz 4 | *.deb 5 | -------------------------------------------------------------------------------- /PKGBUILD: -------------------------------------------------------------------------------- 1 | # Maintainer: Bian Jiaping 2 | # Contributor: Jove Yu 3 | # Contributor: csslayer 4 | # Contributor: Felix Yan 5 | # Contributor: Mike Tong <3344907598 [AT] qq.com> 6 | pkgname=fcitx-sogouimebs 7 | pkgver=2.0.0.38+0428.1 8 | pkgrel=1 9 | pkgdesc="Sogou Pinyin for Linux" 10 | arch=("x86_64") 11 | url="https://pinyin.sogou.com/linux/" 12 | license=("custom") 13 | conflicts=('fcitx-sogoupinyin') 14 | depends=("fcitx" "opencc" "libidn11" "lsb-release" "xorg-xprop" "qt5-webkit" "fcitx-qt5") 15 | 16 | source=("http://archive.ubuntukylin.com/ukui/pool/main/s/sogouimebs/sogouimebs_${pkgver}_amd64.deb") 17 | sha256sums=("80dbf56c876ec0c2e058f699bddc2e1b103e7671f8884e357b493c17799acc9d") 18 | 19 | package(){ 20 | cd ${srcdir} 21 | tar -xJvf data.tar.xz -C "${pkgdir}" 22 | mv "$pkgdir"/usr/lib/*-linux-gnu/fcitx "$pkgdir"/usr/lib/ 23 | rmdir "$pkgdir"/usr/lib/*-linux-gnu 24 | 25 | # Avoid warning "No such key "Gtk/IMModule" in schema "org.gnome.settings-daemon.plugins.xsettings"" 26 | #sed -i "s#Gtk/IMModule=fcitx#overrides={"Gtk/IMModule":<"fcitx">}#" "$pkgdir"/usr/share/glib-2.0/schemas/50_sogoupinyin.gschema.override 27 | 28 | #rm -r "$pkgdir"/usr/share/keyrings 29 | rm -r "$pkgdir"/etc/X11 30 | # install -m755 sogou-autostart "$pkgdir"/usr/bin 31 | 32 | # Do not modify $pkgdir/etc/xdg/autostart/fcitx-ui-sogou-qimpanel.desktop, as it is 33 | # a symlink to absolute path "/usr/share/applications/fcitx-ui-sogou-qimpanel.desktop" 34 | # sed -i "s/sogou-qimpanel\ %U/sogou-autostart/g" "$pkgdir"/usr/share/applications/fcitx-ui-sogou-qimpanel.desktop 35 | } 36 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # **感谢大家的支持,搜狗官方已经推出了[新版本](https://pinyin.sogou.com/linux/),此项目将永久停更。** 2 | # 搜狗输入法优麒麟社区版打包计划 3 | 这个版本是[搜狗输入法优麒麟打包计划](https://gitee.com/laomocode/fcitx-sogoupinyin)的后续版本,提取自Ubuntu Kylin 20.04 LTS。 4 | 5 | 从这个版本提取出来的搜狗输入法名字变了,后面加了优麒麟社区版,也变成企业定制版了。 6 | 7 | 好了,不多说,上截图: 8 | 9 | ![JBrtJ0.png](https://s1.ax1x.com/2020/04/24/JBrtJ0.png) 10 | 11 | 下载链接: 12 | - [码云下载](https://gitee.com/laomocode/fcitx-sogouimebs/releases) 13 | - [Github下载](https://github.com/laomocode/fcitx-sogouimebs/releases) 14 | 15 | 对于Debian系的用户,可以[点击这里](http://archive.ubuntukylin.com/ukui/pool/main/s/sogouimebs/sogouimebs_2.0.0.38+0428.1_amd64.deb)进行下载。 16 | --------------------------------------------------------------------------------