mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
29 lines
657 B
Bash
29 lines
657 B
Bash
# Maintainer: Weng Xuetian <wengxt@gmail.com>
|
|
|
|
pkgname=fcitx-rime
|
|
pkgver=0.3.1
|
|
pkgrel=3
|
|
pkgdesc='Fcitx Wrapper for librime'
|
|
arch=('i686' 'x86_64')
|
|
url="http://code.google.com/p/fcitx"
|
|
license=('GPL')
|
|
depends=('fcitx>=4.2.7' "librime>=1.2" "brise")
|
|
makedepends=('cmake')
|
|
source=(http://download.fcitx-im.org/${pkgname}/${pkgname}-${pkgver}.tar.xz)
|
|
|
|
build() {
|
|
cd "$srcdir/${pkgname}-${pkgver}"
|
|
msg "Starting make..."
|
|
[[ -d build ]] && rm -rf build ; mkdir build
|
|
cd build
|
|
|
|
cmake -DCMAKE_INSTALL_PREFIX=/usr ..
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "$srcdir/$pkgname-$pkgver/build"
|
|
make DESTDIR="$pkgdir" install
|
|
}
|
|
md5sums=('2624ca4168441bbf85028314e84c81c6')
|