mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-05 01:57:17 +08:00
32 lines
823 B
Bash
32 lines
823 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-tables
|
|
pkgver=0.5.9
|
|
pkgrel=2
|
|
pkgdesc="SCIM multi language input method engine (including CJK)"
|
|
arch=('i686' 'x86_64')
|
|
url="http://www.scim-im.org/"
|
|
license=('GPL')
|
|
depends=('scim')
|
|
options=('!libtool')
|
|
source=(http://downloads.sourceforge.net/sourceforge/scim/$pkgname-$pkgver.tar.gz)
|
|
md5sums=('ef7d54966d0b07b1db49358213558065')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
./configure --prefix=/usr --enable-static=no
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|