2016-01-20 03:15:16 +08:00
|
|
|
# Contributions from Arch: https://projects.archlinux.org/svntogit/packages.git/tree/trunk?h=packages/fribidi
|
2010-03-14 23:48:48 +08:00
|
|
|
|
|
|
|
pkgname=fribidi
|
2016-01-20 03:15:16 +08:00
|
|
|
pkgver=0.19.7
|
2010-03-14 23:48:48 +08:00
|
|
|
pkgrel=1
|
|
|
|
pkgdesc="A Free Implementation of the Unicode Bidirectional Algorithm"
|
2016-01-20 03:15:16 +08:00
|
|
|
arch=('x86_64')
|
2010-03-14 23:48:48 +08:00
|
|
|
license=('LGPL')
|
|
|
|
url="http://fribidi.org"
|
|
|
|
depends=('glibc')
|
|
|
|
options=('!libtool')
|
2013-05-12 07:00:00 +08:00
|
|
|
source=(http://fribidi.org/download/${pkgname}-${pkgver}.tar.bz2)
|
2016-01-20 03:15:16 +08:00
|
|
|
md5sums=('6c7e7cfdd39c908f7ac619351c1c5c23')
|
2010-03-14 23:48:48 +08:00
|
|
|
|
|
|
|
build() {
|
|
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
|
|
./configure --prefix=/usr
|
2016-01-20 03:15:16 +08:00
|
|
|
make
|
2010-03-14 23:48:48 +08:00
|
|
|
}
|
2016-01-20 03:15:16 +08:00
|
|
|
|
|
|
|
package() {
|
|
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
|
|
make DESTDIR="${pkgdir}" install
|
|
|
|
}
|