27 lines
765 B
Bash
27 lines
765 B
Bash
# Maintainer: Jesus E. <heckyel@riseup.net>
|
|
|
|
pkgname=libthai
|
|
pkgver=0.1.28
|
|
pkgrel=1
|
|
pkgdesc="Thai language support routines"
|
|
url="https://linux.thai.net/projects/libthai"
|
|
arch=('i686' 'x86_64')
|
|
license=('LGPL-2.1')
|
|
depends=('libdatrie')
|
|
makedepends=('pkg-config')
|
|
options=('!emptydirs')
|
|
source=(https://linux.thai.net/pub/thailinux/software/${pkgname}/${pkgname}-${pkgver}.tar.xz)
|
|
sha512sums=('925be8367ae0cba026e602f1f60c813306e9051e22fe722afba496b6e493f8c1f3eb56abb77ca663f53678b14ad793daf3269b32d32720c0d869b906cdf15f4e')
|
|
|
|
build() {
|
|
cd ${pkgname}-${pkgver}
|
|
./configure --prefix=/usr --disable-static
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd ${pkgname}-${pkgver}
|
|
make DESTDIR="${pkgdir}" install
|
|
install -Dm644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/COPYING
|
|
}
|