wok view fribidi/receipt @ rev 12215

syslinux/md5sum.c32: add a status line
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Apr 03 13:12:44 2012 +0200 (2012-04-03)
parents 02bbaa9d12ba
children 76b72f1ad63c
line source
1 # SliTaz package receipt.
3 PACKAGE="fribidi"
4 VERSION="0.19.2"
5 CATEGORY="x-window"
6 SHORT_DESC="Free implementation of the Unicode Bidirectional Algorithm"
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS="glibc-base"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://fribidi.freedesktop.org/wiki/"
11 WGET_URL="http://fribidi.org/download/$TARBALL"
13 # Rules to configure and make the package.
14 compile_rules()
15 {
16 cd $src
17 ./configure --prefix=/usr --infodir=/usr/share/info \
18 --mandir=/usr/share/man $CONFIGURE_ARGS
19 make
20 make DESTDIR=$PWD/_pkg install
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 mkdir -p $fs/usr/bin $fs/usr/lib
27 cp -a $_pkg/usr/bin/fribidi $fs/usr/bin
28 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
29 }