wok view fribidi/receipt @ rev 4050

Add: util-linux-ng-uuid (provide *uuid* utility and libs)
author Christophe Lincoln <pankso@slitaz.org>
date Wed Sep 09 21:36:26 2009 +0200 (2009-09-09)
parents 3f18ea6cb6ad
children 6d3d0bcb5c5e
line source
1 # SliTaz package receipt.
3 PACKAGE="fribidi"
4 VERSION="0.10.9"
5 CATEGORY="x-window"
6 SHORT_DESC="Free implementation of the Unicode Bidirectional Algorithm"
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS="xorg"
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 strip -s $fs/usr/bin/*
30 strip -s $fs/usr/lib/*
31 }