mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 18:17:14 +08:00
24 lines
602 B
Bash
24 lines
602 B
Bash
# Contributions from Arch: https://projects.archlinux.org/svntogit/packages.git/tree/trunk?h=packages/fribidi
|
|
|
|
pkgname=fribidi
|
|
pkgver=0.19.7
|
|
pkgrel=1
|
|
pkgdesc="A Free Implementation of the Unicode Bidirectional Algorithm"
|
|
arch=('x86_64')
|
|
license=('LGPL')
|
|
url="http://fribidi.org"
|
|
depends=('glibc')
|
|
options=('!libtool')
|
|
source=(http://fribidi.org/download/${pkgname}-${pkgver}.tar.bz2)
|
|
md5sums=('6c7e7cfdd39c908f7ac619351c1c5c23')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
./configure --prefix=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
make DESTDIR="${pkgdir}" install
|
|
} |