wok rev 24037

created recipe for xorg-libxshmfence 1.3
author Hans-G?nter Theisgen
date Tue Apr 13 06:48:06 2021 +0100 (2021-04-13)
parents ef4ee17e784f
children e5a22a781f60
files xorg-libxshmfence/description.txt xorg-libxshmfence/receipt
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/xorg-libxshmfence/description.txt	Tue Apr 13 06:48:06 2021 +0100
     1.3 @@ -0,0 +1,4 @@
     1.4 +This library offers a CPU-based synchronisation primitive compatible
     1.5 +with the X SyncFence objects that can be shared between processes
     1.6 +using file descriptor passing.
     1.7 +On Linux, the library uses futexes.
     2.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     2.2 +++ b/xorg-libxshmfence/receipt	Tue Apr 13 06:48:06 2021 +0100
     2.3 @@ -0,0 +1,29 @@
     2.4 +# SliTaz package receipt.
     2.5 +
     2.6 +PACKAGE="xorg-libxshmfence"
     2.7 +VERSION="1.3"
     2.8 +CATEGORY="x-window"
     2.9 +SHORT_DESC="X11 shared memory fences."
    2.10 +MAINTAINER="maintainer@slitaz.org"
    2.11 +LICENSE="MIT"
    2.12 +WEB_SITE="https://xorg.freedesktop.org/"
    2.13 +
    2.14 +SOURCE="libxshmfence"
    2.15 +TARBALL="$SOURCE-$VERSION.tar.bz2"
    2.16 +WGET_URL="https://www.x.org/releases/individual/lib/$TARBALL"
    2.17 +
    2.18 +compile_rules()
    2.19 +{
    2.20 +	./configure		\
    2.21 +		--prefix=/usr	\
    2.22 +		--enable-futex	\
    2.23 +		$CONFIGURE_ARGS &&
    2.24 +	make &&
    2.25 +	make install
    2.26 +}
    2.27 +
    2.28 +genpkg_rules()
    2.29 +{
    2.30 +	mkdir -p $fs/usr/lib
    2.31 +	cp -a $install/usr/lib/*.so*	$fs/usr/lib
    2.32 +}