wok view xorg/receipt @ rev 941

xarchive: enhance tar and cpio support
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Jun 24 13:47:32 2008 +0000 (2008-06-24)
parents 3e4902324078
children 8192b7f227da
line source
1 # SliTaz package receipt.
3 PACKAGE="xorg"
4 VERSION="7.3"
5 CATEGORY="meta"
6 SHORT_DESC="Xorg server meta-package to compile/install all Xorg modules."
7 MAINTAINER="pankso@slitaz.org"
8 WEB_SITE="http://www.x.org/"
9 BUILD_DEPENDS="pkg-config perl freetype-dev fontconfig-dev xorg-xtrans"
10 DEPENDS="
11 xorg-libXdmcp
12 xorg-libXau
13 xorg-libX11
14 xorg-libXext
15 xorg-libXrender
16 xorg-libXrandr
17 xorg-libXfixes
18 xorg-libfontenc
19 xorg-libXfont
20 xorg-libXcomposite
21 xorg-libICE
22 xorg-libSM
23 xorg-libXt
24 xorg-libXinerama
25 xorg-libXmu
26 xorg-libXpm
27 xorg-libXaw
28 xorg-libXt
29 xorg-libXcursor
30 xorg-libXi
31 xorg-rgb"
33 # Rules to configure and make the package.
34 compile_rules()
35 {
36 for pkg in $DEPENDS
37 do
38 tazwok compile $pkg
39 done
40 }
42 # Rules to gen a SliTaz package suitable for Tazpkg.
43 genpkg_rules()
44 {
45 for pkg in $DEPENDS
46 do
47 tazwok genpkg $pkg
48 done
49 # Have a file to avoid errors with tazpkg install.
50 mkdir -p $fs/etc/X11
51 echo "$VERSION" > $fs/etc/X11/version
52 }