wok annotate xorg-libXss/receipt @ rev 6099

Add uclibc libs
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Aug 31 11:22:25 2010 +0200 (2010-08-31)
parents 0229ca8c7406
children b7625be20fb4
rev   line source
pascal@435 1 # SliTaz package receipt.
pascal@435 2
pascal@435 3 PACKAGE="xorg-libXss"
pankso@5294 4 VERSION="1.2.0"
pascal@435 5 CATEGORY="x-window"
pascal@435 6 SHORT_DESC="Xorg screen saver module."
pascal@435 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@435 8 DEPENDS="xorg"
pascal@435 9 SOURCE="libXScrnSaver"
pascal@435 10 TARBALL="$SOURCE-$VERSION.tar.gz"
pascal@435 11 WEB_SITE="http://www.x.org/"
pascal@435 12 WGET_URL="$XORG_MIRROR/lib/$TARBALL"
pascal@435 13
pascal@435 14 # Rules to configure and make the package.
pascal@435 15 compile_rules()
pascal@435 16 {
pascal@435 17 cd $src
pascal@435 18 ./configure --prefix=/usr --sysconfdir=/etc \
pascal@435 19 --mandir=/usr/share/man --localstatedir=/var \
pascal@435 20 $CONFIGURE_ARGS
pascal@435 21 make
pascal@435 22 make DESTDIR=$PWD/_pkg install
pascal@435 23 }
pascal@435 24
pascal@435 25 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@435 26 genpkg_rules()
pascal@435 27 {
pascal@435 28 mkdir -p $fs/usr/lib
pascal@435 29 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
pascal@435 30 }