wok view xorg-libXfixes/receipt @ rev 14575

eet-dev: Up to 1.7.7
author Dominique Corbex <domcox@slitaz.org>
date Sat May 25 12:38:44 2013 +0200 (2013-05-25)
parents fcb3a613b4f6
children a09e9d64e4c9
line source
1 # SliTaz package receipt.
3 PACKAGE="xorg-libXfixes"
4 VERSION="5.0.1"
5 CATEGORY="x-window"
6 SHORT_DESC="Xorg server module."
7 MAINTAINER="pankso@slitaz.org"
8 SOURCE="libXfixes"
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-fixesproto xorg-libX11-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 ./configure --prefix=/usr --sysconfdir=/etc \
21 --mandir=/usr/share/man --localstatedir=/var \
22 $CONFIGURE_ARGS &&
23 make &&
24 make DESTDIR=$DESTDIR 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 $install/usr/lib/*.so* $fs/usr/lib
32 }