wok view xorg-libxshmfence/receipt @ 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
children 5d79829fa876
line source
1 # SliTaz package receipt.
3 PACKAGE="xorg-libxshmfence"
4 VERSION="1.3"
5 CATEGORY="x-window"
6 SHORT_DESC="X11 shared memory fences."
7 MAINTAINER="maintainer@slitaz.org"
8 LICENSE="MIT"
9 WEB_SITE="https://xorg.freedesktop.org/"
11 SOURCE="libxshmfence"
12 TARBALL="$SOURCE-$VERSION.tar.bz2"
13 WGET_URL="https://www.x.org/releases/individual/lib/$TARBALL"
15 compile_rules()
16 {
17 ./configure \
18 --prefix=/usr \
19 --enable-futex \
20 $CONFIGURE_ARGS &&
21 make &&
22 make install
23 }
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr/lib
28 cp -a $install/usr/lib/*.so* $fs/usr/lib
29 }