wok view xorg-libXcursor/receipt @ rev 14571

Up xorg-libX11 (1.5.99.902), xorg-libXcursor (1.1.14)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri May 24 12:13:58 2013 +0200 (2013-05-24)
parents e5ae411e1d8c
children a09e9d64e4c9
line source
1 # SliTaz package receipt.
3 PACKAGE="xorg-libXcursor"
4 VERSION="1.1.14"
5 CATEGORY="x-window"
6 SHORT_DESC="X cursors library."
7 MAINTAINER="pankso@slitaz.org"
8 SOURCE="libXcursor"
9 TARBALL="$SOURCE-$VERSION.tar.bz2"
10 WEB_SITE="http://www.x.org/"
11 WGET_URL="$XORG_MIRROR/lib/$TARBALL"
13 DEPENDS="xorg-libXrender xorg-libXfixes"
14 BUILD_DEPENDS="xorg-libXrender-dev xorg-libXfixes-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 }