blob: 1c6711fda61a3f6b42fab739cf325f3926a21772 (
plain)
1 # Description: a free implementation of the Unicode Bidirectional (BiDi) Algorithm
2 # URL: http://fribidi.sourceforge.net/
3 # Maintainer: sten, nick dot steeves at shaw dot ca
4 # Packager:
5
6 name=fribidi
7 version=0.10.7
8 release=1
9 source=(http://fribidi.org/download/fribidi-$version.tar.gz)
10
11 build () {
12 cd $name-$version
13 ./configure --prefix=/usr
14 make
15 make DESTDIR=$PKG install
16 }
|