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

Up libtcplay (3.3)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Apr 27 09:29:39 2020 +0000 (2020-04-27)
parents eb8067417980
children 5d79829fa876
line source
1 # SliTaz package receipt.
3 PACKAGE="xorg-xf86-input-vmmouse"
4 VERSION="13.1.0"
5 CATEGORY="x-window"
6 SHORT_DESC="X.org VMWare Mouse Input driver."
7 MAINTAINER="slaxemulator@gmail.com"
8 LICENSE="MIT"
9 WEB_SITE="https://www.x.org/wiki/"
11 SOURCE="xf86-input-vmmouse"
12 TARBALL="$SOURCE-$VERSION.tar.bz2"
13 WGET_URL="$XORG_MIRROR/driver/$TARBALL"
15 DEPENDS="xorg-server"
16 BUILD_DEPENDS="xorg-server-dev"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 ./configure \
22 --prefix=/usr \
23 --infodir=/usr/share/info \
24 --mandir=/usr/share/man \
25 --with-xorg-conf-dir=/etc/X11/xorg.conf.d \
26 $CONFIGURE_ARGS &&
27 make &&
28 make DESTDIR=$DESTDIR install
29 }
31 # Rules to gen a SliTaz package suitable for Tazpkg.
32 genpkg_rules()
33 {
34 mkdir -p $fs/usr
36 cp -a $install/usr/bin $fs/usr
37 cp -a $install/usr/lib $fs/usr
38 cp -a $install/etc $fs
39 }