blob: 959016e6f80b00a7448d8231e74756137f7ce19d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# Description: Support pour la langue thai
# URL: http://linux.thai.net/projects/libthai
# Maintainer: NuTyX core team
# Packager: thierryn1 at hispeed dot ch
# Depends on: libdatrie
# Run on: libdatrie
name=libthai
version=0.1.14
release=1
source=( http://linux.thai.net/pub/thailinux/software/$name/$name-$version.tar.gz)
build() {
cd $name-$version
./configure --prefix=/usr \
--mandir=/usr/share/man \
--infodir=/usr/share/info \
--disable-static \
--disable-doxygen-doc
make
make DESTDIR=$PKG install
rm -r $PKG/usr/share/man
}
|