wok-6.x annotate xorg-xf86-input-mutouch/receipt @ rev 23718
updated unifont (12.1.03 -> 13.0.01)
author | Hans-G?nter Theisgen |
---|---|
date | Wed Apr 29 07:46:51 2020 +0100 (2020-04-29) |
parents | 9d996cff90a4 |
children | 5d79829fa876 |
rev | line source |
---|---|
pascal@4848 | 1 # SliTaz package receipt. |
pascal@4848 | 2 |
pascal@4848 | 3 PACKAGE="xorg-xf86-input-mutouch" |
pascal@15728 | 4 VERSION="1.3.0" |
pascal@4848 | 5 CATEGORY="x-window" |
pascal@4848 | 6 SHORT_DESC="Xorg server protocol." |
pascal@4848 | 7 MAINTAINER="pankso@slitaz.org" |
pascal@15579 | 8 LICENSE="MIT" |
pascal@4848 | 9 SOURCE="xf86-input-mutouch" |
gokhlayeh@6993 | 10 TARBALL="$SOURCE-$VERSION.tar.bz2" |
pascal@20423 | 11 WEB_SITE="https://www.x.org/" |
pascal@4848 | 12 WGET_URL="$XORG_MIRROR/driver/$TARBALL" |
pascal@4848 | 13 |
pascal@15579 | 14 DEPENDS="xorg-server" |
pascal@15579 | 15 BUILD_DEPENDS="xorg-server-dev" |
pascal@15579 | 16 |
pascal@4848 | 17 # Rules to configure and make the package. |
pascal@4848 | 18 compile_rules() |
pascal@4848 | 19 { |
pascal@4848 | 20 cd $src |
pascal@4848 | 21 ./configure \ |
pascal@4848 | 22 --prefix=/usr \ |
pascal@4848 | 23 --sysconfdir=/etc \ |
pascal@4848 | 24 --mandir=/usr/share/man \ |
pascal@4848 | 25 --localstatedir=/var \ |
pascal@4848 | 26 --with-xorg-module-dir=/usr/lib/X11/modules \ |
pascal@4848 | 27 $CONFIGURE_ARGS && |
pascal@4848 | 28 make && |
pascal@15579 | 29 make DESTDIR=$DESTDIR install |
pascal@4848 | 30 } |
pascal@4848 | 31 |
pascal@4848 | 32 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@4848 | 33 genpkg_rules() |
pascal@4848 | 34 { |
pascal@4848 | 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/ |
pascal@4848 | 38 } |
pascal@4848 | 39 |