wok view xorg-libXi/receipt @ rev 5053

fix typos: libgphoto2
author Rohit Joshi <jozee@slitaz.org>
date Sat Mar 06 18:51:17 2010 +0000 (2010-03-06)
parents 857621a8b6e4
children 55fede281d6c
line source
1 # SliTaz package receipt.
3 PACKAGE="xorg-libXi"
4 VERSION="1.1.3"
5 #VERSION="1.2.1"
6 CATEGORY="x-window"
7 SHORT_DESC="Xorg server module."
8 MAINTAINER="pankso@slitaz.org"
9 SOURCE="libXi"
10 TARBALL="$SOURCE-$VERSION.tar.gz"
11 DEPENDS="xorg-libX11 xorg-libXext xorg-libXau xorg-libXdmcp"
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 }