wok-current diff libepoxy/receipt @ rev 25634

Mass update, new toolchain gcc 8.3.0, glibc 2.28.0
author Stanislas Leduc <shann@slitaz.org>
date Sun Jan 14 08:12:37 2024 +0000 (5 months ago)
parents
children
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/libepoxy/receipt	Sun Jan 14 08:12:37 2024 +0000
     1.3 @@ -0,0 +1,34 @@
     1.4 +# SliTaz package receipt.
     1.5 +
     1.6 +PACKAGE="libepoxy"
     1.7 +VERSION="1.5.10"
     1.8 +CATEGORY="x-window"
     1.9 +SHORT_DESC="Library for handling OpenGL function pointer management"
    1.10 +MAINTAINER="mantainer@slitaz.org"
    1.11 +LICENSE="MIT"
    1.12 +WEB_SITE="https://github.com/anholt/libepoxy/"
    1.13 +TARBALL="$PACKAGE-$VERSION.tar.xz"
    1.14 +WGET_URL="https://download.gnome.org/sources/libepoxy/${VERSION%.*}/$TARBALL"
    1.15 +
    1.16 +DEPENDS=""
    1.17 +BUILD_DEPENDS="mesa-dev libegl-mesa meson"
    1.18 +
    1.19 +# Rules to configure and make the package.
    1.20 +compile_rules()
    1.21 +{
    1.22 +        meson build \
    1.23 +            --prefix=/usr \
    1.24 +            --libdir=lib \
    1.25 +            --bindir=/usr/bin \
    1.26 +            --sbindir=/usr/sbin \
    1.27 +            --buildtype=release &&
    1.28 +        ninja -C build &&
    1.29 +        ninja -C build install
    1.30 +}
    1.31 +
    1.32 +# Rules to gen a SliTaz package suitable for Tazpkg.
    1.33 +genpkg_rules()
    1.34 +{
    1.35 +        mkdir -p $fs/usr/lib
    1.36 +        cp -a $install/usr/lib/*.so* $fs/usr/lib
    1.37 +}