wok view xorg-xf86-input-vmmouse/receipt @ rev 7817

busybox/init: add subroot= parameter
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Dec 25 15:12:42 2010 +0100 (2010-12-25)
parents
children c514cc4854d8
line source
1 # SliTaz package receipt.
3 PACKAGE="xorg-xf86-input-vmmouse"
4 VERSION="12.6.10"
5 CATEGORY="x-window"
6 SHORT_DESC="X.org VMWare Mouse Input driver."
7 MAINTAINER="slaxemulator@gmail.com"
8 DEPENDS="xorg"
9 BUILD_DEPENDS="pkg-config xorg-server-dev"
10 SOURCE="xf86-input-vmmouse"
11 TARBALL="$SOURCE-$VERSION.tar.bz2"
12 WEB_SITE="http://xorg.freedesktop.org/"
13 WGET_URL="$XORG_MIRROR/driver/$TARBALL"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure \
20 --prefix=/usr \
21 --infodir=/usr/share/info \
22 --mandir=/usr/share/man \
23 --with-xorg-conf-dir=/etc/X11/xorg.conf.d \
24 $CONFIGURE_ARGS &&
25 make && make DESTDIR=$PWD/_pkg install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $fs/usr
32 cp -a $_pkg/usr/bin $fs/usr
33 cp -a $_pkg/usr/lib $fs/usr
34 cp -a $_pkg/etc $fs
35 }