blob: 130e2cdd89dfa673eceb8f51781d71e09cf1867f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# Description: Implementation de double array
# URL: http://linux.thai.net/~thep/datrie/datrie.html
# Maintainer: thierryn1 at hispeed dot ch
name=libdatrie
version=0.2.3
release=1
source=( http://linux.thai.net/pub/thailinux/software/libthai/$name-$version.tar.gz)
build() {
cd $name-$version
./configure --prefix=/usr \
--mandir=/usr/share/man \
--infodir=/usr/share/info \
--disable-static
make
make DESTDIR=$PKG install
rm -rf $PKG/usr/share/doc
}
|