summaryrefslogtreecommitdiffstats
path: root/abs/core/fribidi/PKGBUILD
blob: 63b7258532d11ba4efd97c7e99a467e2bb53ebb6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# $Id: PKGBUILD 68036 2010-02-10 15:06:49Z giovanni $
# 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=('i686' 'x86_64')
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
}
package() {
  cd "${srcdir}/${pkgname}-${pkgver}"
  make DESTDIR="${pkgdir}" install || return 1
}