wok-current view libepoxy/receipt @ rev 25695

Up linux 5.10.214, Patch xorg-server (CVE-2024-31080, CVE-2024-31081, CVE-2024-31082, CVE-2024-31083)
author Stanislas Leduc <shann@slitaz.org>
date Thu Apr 04 08:53:51 2024 +0000 (2 months ago)
parents
children
line source
1 # SliTaz package receipt.
3 PACKAGE="libepoxy"
4 VERSION="1.5.10"
5 CATEGORY="x-window"
6 SHORT_DESC="Library for handling OpenGL function pointer management"
7 MAINTAINER="mantainer@slitaz.org"
8 LICENSE="MIT"
9 WEB_SITE="https://github.com/anholt/libepoxy/"
10 TARBALL="$PACKAGE-$VERSION.tar.xz"
11 WGET_URL="https://download.gnome.org/sources/libepoxy/${VERSION%.*}/$TARBALL"
13 DEPENDS=""
14 BUILD_DEPENDS="mesa-dev libegl-mesa meson"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 meson build \
20 --prefix=/usr \
21 --libdir=lib \
22 --bindir=/usr/bin \
23 --sbindir=/usr/sbin \
24 --buildtype=release &&
25 ninja -C build &&
26 ninja -C build 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/*.so* $fs/usr/lib
34 }