wok view fribidi/receipt @ rev 77

New icons for mtpaint
author Christophe Lincoln <pankso@slitaz.org>
date Sun Dec 30 14:53:07 2007 +0100 (2007-12-30)
parents
children cf22fee17710
line source
1 # SliTaz package receipt.
3 PACKAGE="fribidi"
4 VERSION="0.10.9"
5 CATEGORY="extra"
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 }