mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 12:47:16 +08:00
24 lines
623 B
Bash
24 lines
623 B
Bash
# $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.5
|
|
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.bz2)
|
|
md5sums=('925bafb97afee8a2fc2d0470c072a155')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
|
|
./configure --prefix=/usr
|
|
make || return 1
|
|
make DESTDIR="${pkgdir}" install || return 1
|
|
}
|