wok-current view xorg-libXdamage/receipt @ rev 13730
Up sdcc (3.2.0)
| author | Pascal Bellard <pascal.bellard@slitaz.org> | 
|---|---|
| date | Sat Dec 22 17:18:47 2012 +0100 (2012-12-22) | 
| 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 }