wok view xorg-mkfontdir/receipt @ rev 12353

lmms: update bdeps
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Apr 19 22:01:09 2012 +0200 (2012-04-19)
parents
children fae364445e65
line source
1 # SliTaz package receipt.
3 PACKAGE="xorg-mkfontdir"
4 VERSION="1.0.6"
5 CATEGORY="x-window"
6 SHORT_DESC="Create an index of X font files in a directory."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 SOURCE="mkfontdir"
9 TARBALL="$SOURCE-$VERSION.tar.bz2"
10 WEB_SITE="http://xorg.freedesktop.org/"
11 WGET_URL="$WEB_SITE/releases/individual/app/$TARBALL"
12 TAGS="utility xorg fonts"
13 DEPENDS="xorg-mkfontscale"
15 # Rules to configure and make the package.ls sr
16 compile_rules()
17 {
18 cd $src
19 ./configure \
20 --prefix=/usr \
21 --mandir=/usr/share/man \
22 $CONFIGURE_ARGS &&
23 make &&
24 make DESTDIR=$DESTDIR install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr
31 cp -a $_pkg/usr/bin $fs/usr
32 chmod +x $fs/usr/bin/*
33 }