wok view xorg-xfontsel/receipt @ rev 7377

Modify locale-zh_CN to enable display Chinese Font correctly
author fireflyoo <lufeng369@gmail.com>
date Thu Nov 25 22:17:40 2010 +0000 (2010-11-25)
parents 413b0174114a
children c514cc4854d8
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 xorg-libXmu xorg-libXt xorg-libX11 xorg-libSM xorg-libICE \
11 xorg-libXext xorg-libXpm xorg-libXau xorg-libXdmcp"
12 BUILD_DEPENDS="xorg-dev"
13 WEB_SITE="http://xorg.freedesktop.org/"
14 WGET_URL="$WEB_SITE/releases/individual/app/$TARBALL"
15 TAGS="utility xorg fonts"
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=$PWD/_pkg 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 $_pkg/usr/bin $fs/usr
34 cp -a $_pkg/usr/share/X11 $fs/usr/share
35 }