wok-6.x annotate fribidi/receipt @ rev 15825
Up: btrfs-mkfs to 3.12.
author | Christopher Rogers <slaxemulator@gmail.com> |
---|---|
date | Fri Jan 24 10:11:49 2014 +0000 (2014-01-24) |
parents | e5ae411e1d8c |
children | 9412b690444b |
rev | line source |
---|---|
pankso@31 | 1 # SliTaz package receipt. |
pankso@31 | 2 |
pankso@31 | 3 PACKAGE="fribidi" |
slaxemulator@8297 | 4 VERSION="0.19.2" |
pankso@211 | 5 CATEGORY="x-window" |
pankso@31 | 6 SHORT_DESC="Free implementation of the Unicode Bidirectional Algorithm" |
pankso@31 | 7 MAINTAINER="pankso@slitaz.org" |
pascal@14996 | 8 LICENSE="LGPL2.1" |
pankso@31 | 9 TARBALL="$PACKAGE-$VERSION.tar.gz" |
pankso@31 | 10 WEB_SITE="http://fribidi.freedesktop.org/wiki/" |
pankso@31 | 11 WGET_URL="http://fribidi.org/download/$TARBALL" |
pankso@31 | 12 |
pascal@14996 | 13 DEPENDS="glibc-base" |
pascal@14996 | 14 |
pankso@31 | 15 # Rules to configure and make the package. |
pankso@31 | 16 compile_rules() |
pankso@31 | 17 { |
pankso@31 | 18 cd $src |
pankso@31 | 19 ./configure --prefix=/usr --infodir=/usr/share/info \ |
pankso@31 | 20 --mandir=/usr/share/man $CONFIGURE_ARGS |
pankso@31 | 21 make |
pascal@14996 | 22 make DESTDIR=$DESTDIR install |
pankso@31 | 23 } |
pankso@31 | 24 |
pankso@31 | 25 # Rules to gen a SliTaz package suitable for Tazpkg. |
pankso@31 | 26 genpkg_rules() |
pankso@31 | 27 { |
pankso@31 | 28 mkdir -p $fs/usr/bin $fs/usr/lib |
pascal@14996 | 29 cp -a $install/usr/bin/fribidi $fs/usr/bin |
pascal@14996 | 30 cp -a $install/usr/lib/*.so* $fs/usr/lib |
pankso@31 | 31 } |
pankso@31 | 32 |