wok rev 22265

created recipes for libevdev and libevdev-dev
author Hans-G?nter Theisgen
date Wed Nov 13 09:04:54 2019 +0100 (2019-11-13)
parents bf4253eaa18a
children a3b8826757f5
files libevdev-dev/receipt libevdev/receipt
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/libevdev-dev/receipt	Wed Nov 13 09:04:54 2019 +0100
     1.3 @@ -0,0 +1,22 @@
     1.4 +# SliTaz package receipt.
     1.5 +
     1.6 +PACKAGE="libevdev-dev"
     1.7 +VERSION="1.8.0"
     1.8 +CATEGORY="x-window"
     1.9 +SHORT_DESC="Common functions for Xorg input drivers - development files."
    1.10 +MAINTAINER="maintainer@slitaz.org"
    1.11 +LICENSE="other"
    1.12 +WEB_SITE="https://www.freedesktop.org/wiki/Software/libevdev/"
    1.13 +LFS="http://www.linuxfromscratch.org/blfs/view/svn/x/x7driver.html#libevdev"
    1.14 +
    1.15 +WANTED="libevdev"
    1.16 +
    1.17 +# Rules to gen a SliTaz package suitable for Tazpkg.
    1.18 +genpkg_rules()
    1.19 +{
    1.20 +	mkdir -p $fs/usr/lib
    1.21 +
    1.22 +	cp -a $install/usr/include		$fs/usr
    1.23 +	cp -a $install/usr/lib/*.*a		$fs/usr/lib
    1.24 +	cp -a $install/usr/lib/pkgconfig	$fs/usr/lib
    1.25 +}
     2.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     2.2 +++ b/libevdev/receipt	Wed Nov 13 09:04:54 2019 +0100
     2.3 @@ -0,0 +1,34 @@
     2.4 +# SliTaz package receipt.
     2.5 +
     2.6 +PACKAGE="libevdev"
     2.7 +VERSION="1.8.0"
     2.8 +CATEGORY="x-window"
     2.9 +SHORT_DESC="Common functions for Xorg input drivers."
    2.10 +MAINTAINER="maintainer@slitaz.org"
    2.11 +LICENSE="other"
    2.12 +WEB_SITE="https://www.freedesktop.org/wiki/Software/libevdev/"
    2.13 +LFS="http://www.linuxfromscratch.org/blfs/view/svn/x/x7driver.html#libevdev"
    2.14 +
    2.15 +TARBALL="$PACKAGE-$VERSION.tar.xz"
    2.16 +WGET_URL="http://www.freedesktop.org/software/libevdev/$TARBALL"
    2.17 +
    2.18 +BUILD_DEPENDS="check-dev python" # doxygen
    2.19 +
    2.20 +# Rules to configure and make the package.
    2.21 +compile_rules()
    2.22 +{
    2.23 +	./configure			\
    2.24 +		--disable-static	\
    2.25 +		$CONFIGURE_ARGS &&
    2.26 +	make &&
    2.27 +	make DESTDIR=$DESTDIR install
    2.28 +}
    2.29 +
    2.30 +# Rules to gen a SliTaz package suitable for Tazpkg.
    2.31 +genpkg_rules()
    2.32 +{
    2.33 +	mkdir -p $fs/usr/lib
    2.34 +
    2.35 +	cp -a $install/usr/bin		$fs/usr
    2.36 +	cp -a $install/usr/lib/*.so*	$fs/usr/lib
    2.37 +}