wok view xorg-xfontsel/receipt @ rev 15187

slitaz-base-files: up 5.4.2
author Aleksej Bobylev <al.bobylev@gmail.com>
date Sat Aug 24 15:12:52 2013 +0300 (2013-08-24)
parents c514cc4854d8
children eb8067417980
line source
1 # SliTaz package receipt.
3 PACKAGE="xorg-xfontsel"
4 VERSION="1.0.3"
5 CATEGORY="x-window"
6 SHORT_DESC="point and click selection utility of X11 font names"
7 MAINTAINER="jozee@slitaz.org"
8 SOURCE="xfontsel"
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"
14 DEPENDS="xorg-libXaw"
15 BUILD_DEPENDS="xorg-libXaw-dev"
17 # Rules to configure and make the package.ls sr
18 compile_rules()
19 {
20 cd $src
21 ./configure \
22 --prefix=/usr \
23 --mandir=/usr/share/man \
24 $CONFIGURE_ARGS &&
25 make &&
26 make DESTDIR=$DESTDIR install
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/usr/share
33 cp -a $install/usr/bin $fs/usr
34 }