wok annotate xorg-bdftopcf/receipt @ rev 11746

Fix alsamixer.desktop to use new icons
author Christophe Lincoln <pankso@slitaz.org>
date Wed Feb 22 02:50:19 2012 +0100 (2012-02-22)
parents
children eb8067417980
rev   line source
pascal@11203 1 # SliTaz package receipt.
pascal@11203 2
pascal@11203 3 PACKAGE="xorg-bdftopcf"
pascal@11203 4 VERSION="1.0.3"
pascal@11203 5 CATEGORY="x-window"
pascal@11203 6 SHORT_DESC="Font compiler for the X server and font server."
pascal@11203 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@11203 8 SOURCE="bdftopcf"
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