26 lines
819 B
Bash
26 lines
819 B
Bash
# Maintainer: Jesus E. <heckyel@riseup.net>
|
|
|
|
pkgname=libdatrie
|
|
pkgver=0.2.12
|
|
pkgrel=1
|
|
pkgdesc="Implementation of double-array structure for representing trie, as proposed by Junichi Aoe."
|
|
url="https://linux.thai.net/projects/datrie"
|
|
license=('LGPL-2.1')
|
|
arch=('i686' 'x86_64')
|
|
depends=('glibc')
|
|
options=('!emptydirs')
|
|
source=(https://linux.thai.net/pub/thailinux/software/libthai/${pkgname}-${pkgver}.tar.xz)
|
|
sha512sums=('7cf17859331d6111679e2c6fe0fa256abb13187b0b1116c8225f066281ab852f847a0d2d0d42b9604faf1d56290909fe3386362e34ed5bd1109516dffa2775a1')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
./configure --prefix=/usr --disable-static
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
make DESTDIR="${pkgdir}" install
|
|
install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
|
|
}
|