wok-current view libepoxy/receipt @ rev 25707
Fix miss file need for grub2-efi install (kernel.img, modinfo.sh)
author | Stanislas Leduc <shann@slitaz.org> |
---|---|
date | Thu May 30 20:14:23 2024 +0000 (5 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 }