wok view libevdev/receipt @ rev 23874

squidclamav: typo
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Jun 25 19:42:45 2020 +0000 (2020-06-25)
parents b5ab015a48ad
children 5d79829fa876
line source
1 # SliTaz package receipt.
3 PACKAGE="libevdev"
4 VERSION="1.9.0"
5 CATEGORY="x-window"
6 SHORT_DESC="Common functions for Xorg input drivers."
7 MAINTAINER="maintainer@slitaz.org"
8 LICENSE="other"
9 WEB_SITE="https://www.freedesktop.org/wiki/Software/libevdev/"
10 LFS="http://www.linuxfromscratch.org/blfs/view/svn/x/x7driver.html#libevdev"
12 TARBALL="$PACKAGE-$VERSION.tar.xz"
13 WGET_URL="http://www.freedesktop.org/software/libevdev/$TARBALL"
15 BUILD_DEPENDS="check-dev python" # doxygen
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 ./configure \
21 --disable-static \
22 $CONFIGURE_ARGS &&
23 make &&
24 make DESTDIR=$DESTDIR install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr/lib
32 cp -a $install/usr/bin $fs/usr
33 cp -a $install/usr/lib/*.so* $fs/usr/lib
34 }