wok view xorg-libXp/receipt @ rev 10034

glibc: be compatible with current stable kernel
author Christophe Lincoln <pankso@slitaz.org>
date Fri May 20 03:21:36 2011 +0200 (2011-05-20)
parents cf86af013953
children 848af2e8dc82
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="xorg-libXext"
10 BUILD_DEPENDS="xorg-libXext-dev 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 }