# SliTaz package receipt. PACKAGE="fribidi" VERSION="0.19.2" CATEGORY="x-window" SHORT_DESC="Free implementation of the Unicode Bidirectional Algorithm" MAINTAINER="pankso@slitaz.org" DEPENDS="glibc-base" TARBALL="$PACKAGE-$VERSION.tar.gz" WEB_SITE="http://fribidi.freedesktop.org/wiki/" WGET_URL="http://fribidi.org/download/$TARBALL" # Rules to configure and make the package. compile_rules() { cd $src ./configure --prefix=/usr --infodir=/usr/share/info \ --mandir=/usr/share/man $CONFIGURE_ARGS make make DESTDIR=$PWD/_pkg install } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { mkdir -p $fs/usr/bin $fs/usr/lib cp -a $_pkg/usr/bin/fribidi $fs/usr/bin cp -a $_pkg/usr/lib/*.so* $fs/usr/lib }