wok-current view libglvnd/receipt @ rev 25710

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