mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 22:47:14 +08:00
35 lines
854 B
Bash
35 lines
854 B
Bash
#
|
|
# Platform Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer (i686): Phil Miller <philm[at]chakra-project[dog]org>
|
|
# maintainer (x86_64): Manuel Tortosa <manutortosa[at]chakra-project[dot]org>
|
|
|
|
# include global config
|
|
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
|
|
|
|
pkgname=scim-chewing
|
|
pkgver=0.3.4
|
|
pkgrel=1
|
|
pkgdesc="SCIM Smart Chewing input method engine"
|
|
arch=(i686 x86_64)
|
|
url="http://chewing.csie.net/"
|
|
license=("GPL")
|
|
depends=('scim>=1.4.8' 'libchewing>=0.3.2')
|
|
makedepends=('intltool')
|
|
options=('!libtool')
|
|
source=(http://chewing.csie.net/download/scim/$pkgname-$pkgver.tar.bz2)
|
|
sha1sums=('f6c8d16f19f17449ee169f1ca787350353e93b05')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
./configure --prefix=/usr --disable-static
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|
|
|
|
|