wok view xorg-libXrender/receipt @ rev 12811

Add bison, m4 and xz to ARM arch
author Christophe Lincoln <pankso@slitaz.org>
date Sun May 20 03:09:06 2012 +0200 (2012-05-20)
parents e5ae411e1d8c
children 347dd368a084
line source
1 # SliTaz package receipt.
3 PACKAGE="xorg-libXrender"
4 VERSION="0.9.7"
5 CATEGORY="x-window"
6 SHORT_DESC="Xorg RENDER extensions library."
7 MAINTAINER="pankso@slitaz.org"
8 SOURCE="libXrender"
9 TARBALL="$SOURCE-$VERSION.tar.bz2"
10 WEB_SITE="http://www.x.org/"
11 WGET_URL="$XORG_MIRROR/lib/$TARBALL"
13 DEPENDS="xorg-libX11"
14 BUILD_DEPENDS="xorg-libX11-dev xorg-renderproto"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 ./configure \
21 --sysconfdir=/etc \
22 --mandir=/usr/share/man \
23 --localstatedir=/var \
24 $CONFIGURE_ARGS &&
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 $install/usr/lib/*.so* $fs/usr/lib
33 }