wok-current annotate libglvnd/receipt @ rev 25712
Use symlink for libxvmc-mesa
author | Stanislas Leduc <shann@slitaz.org> |
---|---|
date | Mon Jun 10 20:42:21 2024 +0000 (6 months ago) |
parents | |
children | 5926178cd6fa |
rev | line source |
---|---|
shann@25710 | 1 # SliTaz package receipt. |
shann@25710 | 2 |
shann@25710 | 3 PACKAGE="libglvnd" |
shann@25710 | 4 VERSION="1.3.3" |
shann@25710 | 5 CATEGORY="x-window" |
shann@25710 | 6 SHORT_DESC="Vendor neutral GL dispatch library" |
shann@25710 | 7 MAINTAINER="maintainer@slitaz.org" |
shann@25710 | 8 LICENSE="MIT" |
shann@25710 | 9 TARBALL="$PACKAGE-$VERSION.tar.bz2" |
shann@25710 | 10 WEB_SITE="https://gitlab.freedesktop.org/glvnd/libglvnd" |
shann@25710 | 11 WGET_URL="git|https://gitlab.freedesktop.org/glvnd/libglvnd.git" |
shann@25710 | 12 BRANCH="0f0d49f0" |
shann@25710 | 13 |
shann@25710 | 14 DEPENDS="" |
shann@25710 | 15 BUILD_DEPENDS="git automake libtool xorg-glproto" |
shann@25710 | 16 |
shann@25710 | 17 # Rules to configure and make the package. |
shann@25710 | 18 compile_rules() |
shann@25710 | 19 { |
shann@25710 | 20 NOCONFIGURE=1 ./autogen.sh |
shann@25710 | 21 autoreconf -vif |
shann@25710 | 22 |
shann@25710 | 23 ./configure \ |
shann@25710 | 24 --prefix=/usr \ |
shann@25710 | 25 $CONFIGURE_ARGS && |
shann@25710 | 26 make $MAKEFLAGS && make install |
shann@25710 | 27 } |
shann@25710 | 28 |
shann@25710 | 29 # Rules to gen a SliTaz package suitable for Tazpkg. |
shann@25710 | 30 genpkg_rules() |
shann@25710 | 31 { |
shann@25710 | 32 mkdir -p $fs/usr/lib |
shann@25710 | 33 cp -a $install/usr/lib/lib*so* $fs/usr/lib |
shann@25710 | 34 } |