wok-current view xorg-xf86-input-vmmouse/receipt @ rev 13885
Up: slitaz-base-files (5.4)
| author | Eric Joseph-Alexandre <erjo@slitaz.org> | 
|---|---|
| date | Thu Jan 17 19:28:43 2013 +0100 (2013-01-17) | 
| parents | 253d2b123069 | 
| children | 6f80c2cdb0f1 | 
 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-server"
     9 BUILD_DEPENDS="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 }