wok view xorg-libXp/receipt @ rev 12043

dovecot: Add initscript. Improve receipt
author Eric Joseph-Alexandre <erjo@slitaz.org>
date Wed Mar 07 17:24:26 2012 +0100 (2012-03-07)
parents c514cc4854d8
children 48bd3d8ae881
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"
16 CROSS="bug: can not run test programm"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 cd $src
22 ./configure \
23 --build=$HOST_SYSTEM \
24 --host=$HOST_SYSTEM &&
25 make && make install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $fs/usr/lib
32 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
33 }