mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-05 05:47:14 +08:00
24 lines
726 B
Bash
24 lines
726 B
Bash
|
# $Id: PKGBUILD 57532 2009-10-31 20:25:39Z eric $
|
||
|
# Contributor: Camille Moncelier <pix@devlife.org>
|
||
|
|
||
|
pkgname=m17n-lib
|
||
|
pkgver=1.5.5
|
||
|
pkgrel=1
|
||
|
pkgdesc="A multilingual text processing library (runtimes)"
|
||
|
arch=('i686' 'x86_64')
|
||
|
url="http://www.m17n.org/m17n-lib/"
|
||
|
license=('GPL')
|
||
|
depends=('libxft' 'libxaw' 'm17n-db>=1.5.4' 'fribidi' 'libxml2' 'gd' 'ispell' 'anthy' 'libotf')
|
||
|
options=('!libtool' '!makeflags')
|
||
|
source=(http://www.m17n.org/m17n-lib-download/$pkgname-$pkgver.tar.gz)
|
||
|
md5sums=('924875cfc30ac6620744b67385ecc144')
|
||
|
sha1sums=('31cc7523f0d70a62ffe1e14f2e6e81bbc2d2d3dd')
|
||
|
|
||
|
build() {
|
||
|
cd "$srcdir/$pkgname-$pkgver"
|
||
|
./configure --prefix=/usr || return 1
|
||
|
make || return 1
|
||
|
make DESTDIR="$pkgdir" install || return 1
|
||
|
}
|
||
|
|