wok annotate xorg-bdftopcf/receipt @ rev 16315

ARM: add/up vala (0.24.0) + shared-mime-info (hope it will fix some gtk crash)
author Christophe Lincoln <pankso@slitaz.org>
date Wed Apr 09 14:57:01 2014 +0200 (2014-04-09)
parents bf4417b54ba9
children 54fe236b54a6
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@15579 8 LICENSE="MIT"
pascal@11203 9 SOURCE="bdftopcf"
pascal@11203 10 TARBALL="$SOURCE-$VERSION.tar.bz2"
pascal@11203 11 WEB_SITE="http://xorg.freedesktop.org/"
pascal@11203 12 WGET_URL="$WEB_SITE/releases/individual/app/$TARBALL"
pascal@11203 13 TAGS="utility xorg fonts"
pascal@11203 14
pascal@11203 15 # Rules to configure and make the package.ls sr
pascal@11203 16 compile_rules()
pascal@11203 17 {
pascal@11203 18 cd $src
pascal@11203 19 ./configure \
pascal@11203 20 --prefix=/usr \
pascal@11203 21 --mandir=/usr/share/man \
pascal@11203 22 $CONFIGURE_ARGS &&
pascal@11203 23 make &&
pascal@11203 24 make DESTDIR=$DESTDIR install
pascal@11203 25 }
pascal@11203 26
pascal@11203 27 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@11203 28 genpkg_rules()
pascal@11203 29 {
pascal@11203 30 mkdir -p $fs/usr
pascal@15579 31 cp -a $install/usr/bin $fs/usr
pascal@11203 32 }
pascal@11203 33