1 # Build recipe for liepoxy.
3 # Copyright (c) 2017 Mateus P. Rodrigues, <mprodrigues@dragora.org>.
4 # Copyright (c) 2018, 2020-2021 Matias Fonzo, <selk@dragora.org>.
6 # Licensed under the Apache License, Version 2.0 (the "License");
7 # you may not use this file except in compliance with the License.
8 # You may obtain a copy of the License at
10 # http://www.apache.org/licenses/LICENSE-2.0
12 # Unless required by applicable law or agreed to in writing, software
13 # distributed under the License is distributed on an "AS IS" BASIS,
14 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 # See the License for the specific language governing permissions and
16 # limitations under the License.
18 # Exit immediately on any error
25 # Define a category for the output of the package name
28 tarname=${program}-${version}.tar.xz
31 fetch=http://github.com/anholt/libepoxy/releases/download/${version}/$tarname
34 A library for handling OpenGL function pointer management.
36 It hides the complexity of dlopen(), dlsym(), glXGetProcAddress(),
37 eglGetProcAddress(), etc. from the app developer, with very little
38 knowledge needed on their part. They get to read GL specs and write
39 code using undecorated function names like glCompileShader().
42 homepage=http://github.com/anholt/libepoxy
45 # Source documentation
46 docs="COPYING README.md"
47 docsdir="${docdir}/${program}-${version}"
51 unpack "${tardir}/$tarname"
55 # Set sane permissions
56 chmod -R u+w,go-w,a+rX-s .
61 CFLAGS="$QICFLAGS" LDFLAGS="$QILDFLAGS" \
62 meson setup $configure_args \
63 --libdir /usr/lib${libSuffix} \
72 DESTDIR="$destdir" ninja -j${jobs} install
77 mkdir -p "${destdir}${docsdir}"
78 cp -p $docs "${destdir}${docsdir}/"