wok view xorg-libxshmfence/receipt @ rev 24071

Add some current_version
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Jul 07 10:35:01 2021 +0000 (2021-07-07)
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 }