wok view xorg-libXi/receipt @ rev 9032

squid-custom-errors: fix genpkg_rules
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Mar 03 22:35:38 2011 +0100 (2011-03-03)
parents c514cc4854d8
children 1b8d4622fd4d
line source
1 # SliTaz package receipt.
3 PACKAGE="xorg-libXi"
4 VERSION="1.4.1"
5 CATEGORY="x-window"
6 SHORT_DESC="Xorg library for the X Input Extension."
7 MAINTAINER="pankso@slitaz.org"
8 SOURCE="libXi"
9 TARBALL="$SOURCE-$VERSION.tar.bz2"
10 DEPENDS="xorg-libXext"
11 BUILD_DEPENDS="xorg-libXext-dev"
12 WEB_SITE="http://www.x.org/"
13 WGET_URL="ftp://ftp.solnet.ch/mirror/x.org/pub/individual/lib/$TARBALL"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure --prefix=/usr --sysconfdir=/etc \
20 --mandir=/usr/share/man --localstatedir=/var \
21 $CONFIGURE_ARGS &&
22 make &&
23 make DESTDIR=$PWD/_pkg install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr/lib
30 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
31 }