wok annotate xorg-xf86-input-keyboard/receipt @ rev 21759

mosh: use gcc83
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Jun 26 19:12:58 2019 +0200 (2019-06-26)
parents eb8067417980
children 399f0c9c15f1
rev   line source
pankso@88 1 # SliTaz package receipt.
pankso@88 2
pankso@88 3 PACKAGE="xorg-xf86-input-keyboard"
pascal@15162 4 VERSION="1.7.0"
pankso@88 5 CATEGORY="x-window"
pankso@346 6 SHORT_DESC="Xorg server keyboard driver."
pankso@88 7 MAINTAINER="pankso@slitaz.org"
pascal@15579 8 LICENSE="MIT"
pankso@88 9 SOURCE="xf86-input-keyboard"
pankso@346 10 TARBALL="$SOURCE-$VERSION.tar.bz2"
pascal@20423 11 WEB_SITE="https://www.x.org/"
pankso@346 12 WGET_URL="ftp://ftp.solnet.ch/mirror/x.org/pub/individual/driver/$TARBALL"
pankso@88 13
pascal@15162 14 DEPENDS="xorg-server"
pascal@15162 15 BUILD_DEPENDS="xorg-server-dev"
pascal@15162 16
pankso@88 17 # Rules to configure and make the package.
pankso@88 18 compile_rules()
pankso@88 19 {
pankso@88 20 cd $src
pankso@444 21 ./configure \
pankso@444 22 --prefix=/usr \
pankso@444 23 --sysconfdir=/etc \
pankso@444 24 --mandir=/usr/share/man \
pankso@444 25 --localstatedir=/var \
pankso@444 26 --with-xorg-module-dir=/usr/lib/X11/modules \
pascal@1480 27 $CONFIGURE_ARGS &&
pascal@1480 28 make &&
pascal@15162 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@15162 36 cp -a $install/usr/lib/X11/modules/input/*.so \
pankso@444 37 $fs/usr/lib/X11/modules/input/
pankso@88 38 }
pankso@88 39