wok-6.x annotate fribidi/receipt @ rev 19229
Add httpfs2-fuse
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Fri Jun 24 16:28:42 2016 +0200 (2016-06-24) |
parents | 76b72f1ad63c |
children | e3f377fbc5f0 |
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@16131 | 12 HOST_ARCH="i486 arm" |
pankso@31 | 13 |
pascal@14996 | 14 DEPENDS="glibc-base" |
pascal@14996 | 15 |
pankso@31 | 16 # Rules to configure and make the package. |
pankso@31 | 17 compile_rules() |
pankso@31 | 18 { |
pankso@16131 | 19 ./configure $CONFIGURE_ARGS && |
pankso@16131 | 20 make && make install |
pankso@31 | 21 } |
pankso@31 | 22 |
pankso@31 | 23 # Rules to gen a SliTaz package suitable for Tazpkg. |
pankso@31 | 24 genpkg_rules() |
pankso@31 | 25 { |
pankso@31 | 26 mkdir -p $fs/usr/bin $fs/usr/lib |
pascal@14996 | 27 cp -a $install/usr/bin/fribidi $fs/usr/bin |
pascal@14996 | 28 cp -a $install/usr/lib/*.so* $fs/usr/lib |
pankso@31 | 29 } |
pankso@31 | 30 |