wok view libglw-mesa/receipt @ rev 23859

updated firefox-official (76.0 -> 77.0)
author Hans-G?nter Theisgen
date Wed Jun 17 15:35:48 2020 +0100 (2020-06-17)
parents 0e3538a79c6b
children 4ce52a0b72fd
line source
1 # SliTaz package receipt.
3 PACKAGE="libglw-mesa"
4 VERSION="8.0.0"
5 CATEGORY="x-window"
6 SHORT_DESC="OpenGL widget library"
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="MIT"
9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
10 WEB_SITE="https://www.mesa3d.org/"
11 WGET_URL="git|git://anongit.freedesktop.org/mesa/glw.git"
12 PROVIDE="libglw"
14 DEPENDS="glibc-base util-linux-uuid zlib freetype lesstif mesa \
15 xorg-libICE xorg-libSM xorg-libX11 xorg-libXau xorg-libXdmcp xorg-libXt \
16 lesstif"
17 BUILD_DEPENDS="mesa-dev automake autoconf libtool util-linux-uuid-dev file"
19 # Rules to configure and make the package.
20 compile_rules()
21 {
22 ./autogen.sh
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/libGLw*so* $fs/usr/lib
34 }