wok-next annotate xorg-xf86-input-mutouch/receipt @ rev 9215
mc, samba, perl-curses: use ncursesw instead of ncurses
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Fri Mar 11 11:47:15 2011 +0100 (2011-03-11) |
parents | c514cc4854d8 |
children | eb8067417980 |
rev | line source |
---|---|
pascal@4848 | 1 # SliTaz package receipt. |
pascal@4848 | 2 |
pascal@4848 | 3 PACKAGE="xorg-xf86-input-mutouch" |
pascal@4848 | 4 VERSION="1.2.1" |
pascal@4848 | 5 CATEGORY="x-window" |
pascal@4848 | 6 SHORT_DESC="Xorg server protocol." |
pascal@4848 | 7 MAINTAINER="pankso@slitaz.org" |
slaxemulator@8029 | 8 DEPENDS="xorg-server" |
slaxemulator@8029 | 9 BUILD_DEPENDS="xorg-server-dev" |
pascal@4848 | 10 SOURCE="xf86-input-mutouch" |
gokhlayeh@6993 | 11 TARBALL="$SOURCE-$VERSION.tar.bz2" |
pascal@4848 | 12 WEB_SITE="http://www.x.org/" |
pascal@4848 | 13 WGET_URL="$XORG_MIRROR/driver/$TARBALL" |
pascal@4848 | 14 |
pascal@4848 | 15 # Rules to configure and make the package. |
pascal@4848 | 16 compile_rules() |
pascal@4848 | 17 { |
pascal@4848 | 18 cd $src |
pascal@8974 | 19 patch -p1 -i $stuff/mutouch-1.2.1-abi.patch |
pascal@4848 | 20 ./configure \ |
pascal@4848 | 21 --prefix=/usr \ |
pascal@4848 | 22 --sysconfdir=/etc \ |
pascal@4848 | 23 --mandir=/usr/share/man \ |
pascal@4848 | 24 --localstatedir=/var \ |
pascal@4848 | 25 --with-xorg-module-dir=/usr/lib/X11/modules \ |
pascal@4848 | 26 $CONFIGURE_ARGS && |
pascal@4848 | 27 make && |
pascal@4848 | 28 make DESTDIR=$PWD/_pkg install |
pascal@4848 | 29 } |
pascal@4848 | 30 |
pascal@4848 | 31 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@4848 | 32 genpkg_rules() |
pascal@4848 | 33 { |
pascal@4848 | 34 mkdir -p $fs/usr/lib/X11/modules/input/ |
pascal@4848 | 35 cp -a $_pkg/usr/lib/X11/modules/input/*.so \ |
pascal@4848 | 36 $fs/usr/lib/X11/modules/input/ |
pascal@4848 | 37 } |
pascal@4848 | 38 |