wok-current view xorg-libxshmfence/receipt @ rev 25701

Fix dep for libglamoregl.so (libepoxy), and miss file for amdgpu (thanks alanyih)
author Stanislas Leduc <shann@slitaz.org>
date Fri Apr 19 12:48:51 2024 +0000 (5 months ago)
parents 5d79829fa876
children
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 BUILD_DEPENDS="xorg-xproto"
17 current_version()
18 {
19 wget -O - $(dirname $WGET_URL) 2>/dev/null | \
20 sed "/$SOURCE-[0-9]/!d;/tar/!d;s|.*$SOURCE-\\(.*\\).tar.*\".*|\\1|" | sort -Vr | sed q
21 }
23 compile_rules()
24 {
25 ./configure \
26 --prefix=/usr \
27 --enable-futex \
28 $CONFIGURE_ARGS &&
29 make &&
30 make install
31 }
33 genpkg_rules()
34 {
35 mkdir -p $fs/usr/lib
36 cp -a $install/usr/lib/*.so* $fs/usr/lib
37 }