mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
25 lines
670 B
Bash
25 lines
670 B
Bash
# $Id: PKGBUILD 356 2008-04-18 22:56:27Z aaron $
|
|
# Maintainer: damir <damir@archlinux.org>
|
|
# Contributer: Gan Lu <rhythm.gan@gmail.com>
|
|
|
|
pkgname=scim-pinyin
|
|
pkgver=0.5.91
|
|
pkgrel=4
|
|
pkgdesc="Chinese 拼音 (PinYin) input for SCIM"
|
|
arch=(i686 x86_64)
|
|
url="http://www.scim-im.org/"
|
|
license=GPL
|
|
depends=('scim>=1.4.7')
|
|
source=(http://heanet.dl.sourceforge.net/sourceforge/scim/$pkgname-$pkgver.tar.gz)
|
|
|
|
build() {
|
|
cd $startdir/src/$pkgname-$pkgver
|
|
./configure --prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--disable-static
|
|
make || return 1
|
|
make DESTDIR=$startdir/pkg install
|
|
find $startdir/pkg -name '*.la' -exec rm {} \;
|
|
}
|
|
|
|
md5sums=('fb96d3545090d7681ea03edaced4eccb')
|