mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 21:07:13 +08:00
29 lines
720 B
Bash
29 lines
720 B
Bash
# $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.22
|
|
pkgrel=1
|
|
pkgdesc="Thai language support routines"
|
|
url="http://linux.thai.net/projects/libthai"
|
|
arch=('i686' 'x86_64')
|
|
license=('LGPL')
|
|
depends=('libdatrie')
|
|
makedepends=('pkgconfig')
|
|
options=('!emptydirs')
|
|
source=(http://linux.thai.net/pub/thailinux/software/${pkgname}/${pkgname}-${pkgver}.tar.xz)
|
|
md5sums=('1e14699fc380e47f8195fe0c1b41556c')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
./configure --prefix=/usr --disable-static
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|
|
|