wok annotate xorg-fonttosfnt/receipt @ rev 11203

Add from wok-undigest: xorg-bdftopcf xorg-fonttosfnt xorg-mkfontdir xorg-mkfontscale xorg-xedit xorg-xeyes xorg-xf86-video-radeonhd
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Nov 03 10:39:15 2011 +0100 (2011-11-03)
parents
children 0ccb3190e4f3
rev   line source
pascal@11203 1 # SliTaz package receipt.
pascal@11203 2
pascal@11203 3 PACKAGE="xorg-fonttosfnt"
pascal@11203 4 VERSION="1.0.4"
pascal@11203 5 CATEGORY="x-window"
pascal@11203 6 SHORT_DESC="Wrap a bitmap font in a sfnt (TrueType) wrapper."
pascal@11203 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@11203 8 SOURCE="fonttosfnt"
pascal@11203 9 TARBALL="$SOURCE-$VERSION.tar.bz2"
pascal@11203 10 WEB_SITE="http://xorg.freedesktop.org/"
pascal@11203 11 WGET_URL="$WEB_SITE/releases/individual/app/$TARBALL"
pascal@11203 12 TAGS="utility xorg fonts"
pascal@11203 13
pascal@11203 14 # Rules to configure and make the package.ls sr
pascal@11203 15 compile_rules()
pascal@11203 16 {
pascal@11203 17 cd $src
pascal@11203 18 ./configure \
pascal@11203 19 --prefix=/usr \
pascal@11203 20 --mandir=/usr/share/man \
pascal@11203 21 $CONFIGURE_ARGS &&
pascal@11203 22 make &&
pascal@11203 23 make DESTDIR=$DESTDIR install
pascal@11203 24 }
pascal@11203 25
pascal@11203 26 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@11203 27 genpkg_rules()
pascal@11203 28 {
pascal@11203 29 mkdir -p $fs/usr
pascal@11203 30 cp -a $_pkg/usr/bin $fs/usr
pascal@11203 31 }
pascal@11203 32