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