2010-03-14 23:48:48 +08:00
|
|
|
# $Id: PKGBUILD 71220 2010-03-05 15:38:39Z jgc $
|
|
|
|
# Maintainer: Jan de Groot <jgc@archlinux.org>
|
|
|
|
# Contributor: Chaiwat Suttipongsakul <cwt114@gmail.com>
|
|
|
|
pkgname=libthai
|
|
|
|
pkgver=0.1.14
|
|
|
|
pkgrel=1
|
|
|
|
pkgdesc="Thai language support routines"
|
|
|
|
url="http://linux.thai.net/projects/libthai"
|
|
|
|
arch=('i686' 'x86_64')
|
|
|
|
license=('LGPL')
|
|
|
|
depends=('libdatrie>=0.2.3')
|
|
|
|
makedepends=('pkgconfig')
|
|
|
|
options=('!libtool' '!emptydirs')
|
|
|
|
source=(http://linux.thai.net/pub/thailinux/software/${pkgname}/${pkgname}-${pkgver}.tar.gz)
|
|
|
|
md5sums=('34f64b37ed8f8f49f4a18ae972e6f41e')
|
|
|
|
|
|
|
|
build() {
|
|
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
2010-05-20 12:03:20 +08:00
|
|
|
./configure --prefix=/usr --disable-static --disable-doxygen-doc || return 1
|
2010-03-14 23:48:48 +08:00
|
|
|
make || return 1
|
|
|
|
make DESTDIR="${pkgdir}" install || return 1
|
|
|
|
}
|