wok view xorg-libXp/receipt @ rev 3505

Add: xorg-libXp and xorg-printproto, Xorg print modules
author Matthew Sheets <rcx@zoominternet.net>
date Fri Jun 19 12:31:10 2009 +0000 (2009-06-19)
parents
children cf86af013953
line source
1 # SliTaz package receipt.
3 PACKAGE="xorg-libXp"
4 SOURCE="libXp"
5 VERSION="1.0.0"
6 CATEGORY="development"
7 SHORT_DESC="Provides public APIs to allow client applications to render to non-display devices."
8 MAINTAINER="rcx@zoominternet.net"
9 DEPENDS=""
10 BUILD_DEPENDS="slitaz-toolchain pkg-config xorg-xproto xorg-kbproto xorg-libXdmcp-dev xorg-libX11-dev xorg-libXau-dev xorg-libXext-dev xorg-xextproto xorg-printproto"
11 TARBALL="$SOURCE-$VERSION.tar.bz2"
12 WEB_SITE="http://www.x.org/"
13 # This lib is missing from the current X11R7.4
14 #WGET_URL="$XORG_MIRROR/lib/$TARBALL"
15 WGET_URL="http://xorg.freedesktop.org/releases/X11R7.3/src/lib/$TARBALL"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 cd $src
21 ./configure \
22 --prefix=/usr \
23 --infodir=/usr/share/info \
24 --mandir=/usr/share/man \
25 $CONFIGURE_ARGS &&
26 make && 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/lib
33 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
34 }