recipes: Rename 'pkghashtag' variable to 'pkgcategory'
[dragora.git] / recipes / libs / libepoxy / recipe
blob7105aedd0504ffe69f7d0f1587a76ba0a5aee56f
1 # Build recipe for liepoxy.
3 # Copyright (c) 2017 Mateus P. Rodrigues, <mprodrigues@dragora.org>.
4 # Copyright (c) 2018 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 program=libepoxy
19 version=1.5.3
20 release=1
22 # Define a category for the output of the package name
23 pkgcategory=libs
25 tarname=${program}-${version}.tar.xz
27 # Remote source(s)
28 fetch=http://github.com/anholt/libepoxy/releases/download/${version}/$tarname
30 description="
31 A library for handling OpenGL function pointer management.
33 It hides the complexity of dlopen(), dlsym(), glXGetProcAddress(),
34 eglGetProcAddress(), etc. from the app developer, with very little
35 knowledge needed on their part.  They get to read GL specs and write
36 code using undecorated function names like glCompileShader().
39 homepage=http://github.com/anholt/libepoxy
40 license=MIT
42 # Source documentation
43 docs="COPYING README.md"
44 docsdir="${docdir}/${program}-${version}"
46 build()
48     set -e
50     unpack "${tardir}/$tarname"
52     cd "$srcdir"
54     # Set sane permissions
55     chmod -R u+w,go-w,a+rX-s .
57     mkdir -p build
58     cd build
60     CFLAGS="$QICFLAGS" LDFLAGS="$QILDFLAGS" \
61     meson setup $configure_args \
62      --libdir /usr/lib${libSuffix} \
63      --buildtype=release \
64      --strip \
65      -Dglx=yes \
66      -Degl=yes \
67      -Dx11=true \
68      ..
70     ninja
71     DESTDIR="$destdir" ninja install
73     cd ..
75     # Copy documentation
76     mkdir -p "${destdir}${docsdir}"
77     cp -p $docs "${destdir}${docsdir}/"