wok view xorg-xfontsel/receipt @ rev 11339

libpng: Make sure $PATCH is in $SOURCES_REPOSITORY.
author Christopher Rogers <slaxemulator@gmail.com>
date Sat Nov 26 03:56:37 2011 +0000 (2011-11-26)
parents 07ae722ec64e
children e936d31d469d
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 DEPENDS="xorg-libXaw"
11 BUILD_DEPENDS="xorg-libXaw-dev"
12 WEB_SITE="http://xorg.freedesktop.org/"
13 WGET_URL="$WEB_SITE/releases/individual/app/$TARBALL"
14 TAGS="utility xorg fonts"
16 # Rules to configure and make the package.ls sr
17 compile_rules()
18 {
19 cd $src
20 ./configure \
21 --prefix=/usr \
22 --mandir=/usr/share/man \
23 $CONFIGURE_ARGS &&
24 make &&
25 make DESTDIR=$PWD/_pkg install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $fs/usr/share
32 cp -a $_pkg/usr/bin $fs/usr
33 cp -a $_pkg/usr/share/X11 $fs/usr/share
34 }