blob: a00ce01052f2d5dda563f75f98eafb7bcb94fb53 (
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
|
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=fribidi
pkgver=0.19.4
pkgrel=0
pkgdesc="A Free Implementation of the Unicode Bidirectional Algorithm"
url="http://fribidi.org"
arch="all"
license="LGPL"
subpackages="$pkgname-dev $pkgname-doc"
depends=
makedepends=
source="http://fribidi.org/download/fribidi-$pkgver.tar.bz2"
build ()
{
cd "$srcdir"/$pkgname-$pkgver
./configure --prefix=/usr
make || return 1
}
package() {
cd "$srcdir"/$pkgname-$pkgver
make DESTDIR="$pkgdir" install || return 1
rm "$pkgdir"/usr/lib/*.la || return 1
}
md5sums="0173f98ff929782d45819fc4a813c175 fribidi-0.19.4.tar.bz2"
|