wok view xorg-libXdamage/receipt @ rev 12299

binutils: try a fix with --disable-initfini-array and --disable-werror for i486
author Christophe Lincoln <pankso@slitaz.org>
date Mon Apr 16 13:26:47 2012 +0200 (2012-04-16)
parents c514cc4854d8
children 3e3e15d924c9
line source
1 # SliTaz package receipt.
3 PACKAGE="xorg-libXdamage"
4 VERSION="1.1.3"
5 CATEGORY="x-window"
6 SHORT_DESC="Xorg damage extension."
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS="xorg-libXfixes"
9 BUILD_DEPENDS="pkg-config xorg-damageproto xorg-libXfixes-dev"
10 SOURCE="libXdamage"
11 TARBALL="$SOURCE-$VERSION.tar.bz2"
12 WEB_SITE="http://www.x.org/"
13 WGET_URL="$XORG_MIRROR/lib/$TARBALL"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure \
20 --prefix=/usr --sysconfdir=/etc \
21 --mandir=/usr/share/man --localstatedir=/var \
22 $CONFIGURE_ARGS
23 make
24 make DESTDIR=$PWD/_pkg install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr/lib
31 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
32 }