mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-18 22:54:00 +00:00
23 lines
601 B
Bash
23 lines
601 B
Bash
# ARM Maintaner: Krzysztof Warzecha <kwarzecha7@gmail.com>
|
|
# Maintainer: Giovanni Scafora <giovanni@archlinux.org>
|
|
# Contributor: Nezmer <Nezmer@gmail.com>
|
|
|
|
pkgname=fribidi
|
|
pkgver=0.19.2
|
|
pkgrel=1
|
|
pkgdesc="A Free Implementation of the Unicode Bidirectional Algorithm"
|
|
arch=('arm')
|
|
license=('LGPL')
|
|
url="http://fribidi.org"
|
|
depends=('glibc')
|
|
options=('!libtool')
|
|
source=(http://fribidi.org/download/${pkgname}-${pkgver}.tar.gz)
|
|
md5sums=('626db17d2d99b43615ad9d12500f568a')
|
|
|
|
build() {
|
|
cd ${srcdir}/${pkgname}-${pkgver}
|
|
./configure --prefix=/usr
|
|
make || return 1
|
|
make DESTDIR=${pkgdir} install
|
|
}
|
|
|