16 lines
373 B
Plaintext
16 lines
373 B
Plaintext
|
# Description: Unicode Bidirectional (BiDi) Algorithm.
|
||
|
# URL: https://github.com/fribidi/fribidi/
|
||
|
# Maintainer: Danny Rawlins, crux at romster dot me
|
||
|
|
||
|
name=fribidi
|
||
|
version=0.19.7
|
||
|
release=1
|
||
|
source=(https://github.com/fribidi/fribidi/releases/download/0.19.7/fribidi-0.19.7.tar.bz2)
|
||
|
|
||
|
build() {
|
||
|
cd $name-$version
|
||
|
./configure --prefix=/usr
|
||
|
make
|
||
|
make DESTDIR=$PKG install
|
||
|
}
|