blob: 38b817204666d78e051608eed1229c418fd60196 (
plain)
1 # Description: Unicode Bidirectional (BiDi) Algorithm.
2 # URL: https://github.com/fribidi/fribidi/
3 # Maintainer: Danny Rawlins, crux at romster dot me
4
5 name=fribidi
6 version=1.0.10
7 release=1
8 source=(https://github.com/$name/$name/releases/download/v$version/$name-$version.tar.xz)
9
10 build() {
11 cd $name-$version
12 ./configure --prefix=/usr
13 make
14 make DESTDIR=$PKG install
15 }
|