wok annotate xorg-xf86-input-mouse/receipt @ rev 22831
rage: normalize $VERSION
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Sat Feb 08 12:36:52 2020 +0100 (2020-02-08) |
parents | 814c58f64f83 |
children | 5d79829fa876 |
rev | line source |
---|---|
pankso@88 | 1 # SliTaz package receipt. |
pankso@88 | 2 |
pankso@88 | 3 PACKAGE="xorg-xf86-input-mouse" |
Hans-G?nter@22264 | 4 VERSION="1.9.3" |
pankso@88 | 5 CATEGORY="x-window" |
pankso@88 | 6 SHORT_DESC="Xorg server protocol." |
pankso@88 | 7 MAINTAINER="pankso@slitaz.org" |
pascal@15579 | 8 LICENSE="MIT" |
Hans-G?nter@22264 | 9 WEB_SITE="https://www.x.org/wiki/" |
Hans-G?nter@22264 | 10 |
pankso@88 | 11 SOURCE="xf86-input-mouse" |
gokhlayeh@6993 | 12 TARBALL="$SOURCE-$VERSION.tar.bz2" |
pankso@88 | 13 WGET_URL="$XORG_MIRROR/driver/$TARBALL" |
pankso@88 | 14 |
pascal@15579 | 15 DEPENDS="xorg-server" |
pascal@15579 | 16 BUILD_DEPENDS="xorg-server-dev" |
pascal@15579 | 17 |
pankso@88 | 18 # Rules to configure and make the package. |
pankso@88 | 19 compile_rules() |
pankso@88 | 20 { |
Hans-G?nter@22264 | 21 ./configure \ |
Hans-G?nter@22264 | 22 --prefix=/usr \ |
Hans-G?nter@22264 | 23 --sysconfdir=/etc \ |
Hans-G?nter@22264 | 24 --mandir=/usr/share/man \ |
Hans-G?nter@22264 | 25 --localstatedir=/var \ |
Hans-G?nter@22264 | 26 --with-xorg-module-dir=/usr/lib/X11/modules \ |
Hans-G?nter@22264 | 27 $CONFIGURE_ARGS && |
Hans-G?nter@22264 | 28 make && |
Hans-G?nter@22264 | 29 make DESTDIR=$DESTDIR install |
pankso@88 | 30 } |
pankso@88 | 31 |
pankso@88 | 32 # Rules to gen a SliTaz package suitable for Tazpkg. |
pankso@88 | 33 genpkg_rules() |
pankso@88 | 34 { |
pankso@444 | 35 mkdir -p $fs/usr/lib/X11/modules/input/ |
pascal@15579 | 36 cp -a $install/usr/lib/X11/modules/input/*.so \ |
pascal@15579 | 37 $fs/usr/lib/X11/modules/input/ |
pankso@88 | 38 } |