recipes: Rename 'pkghashtag' variable to 'pkgcategory'
[dragora.git] / recipes / xorg / extra / libdrm / recipe
blob922caeac9c8101a5e0b342be4cc97e26a18056f9
1 # Build recipe for libdrm.
3 # Copyright (c) 2017 Mateus P. Rodrigues <mprodrigues@dragora.org>.
4 # Copyright (c) 2017-2019 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=libdrm
19 version=2.4.99
20 release=1
22 # Define a category for the output of the package name
23 pkgcategory=xorg
25 tarname=${program}-${version}.tar.bz2
27 # Remote source(s)
28 fetch=http://dri.freedesktop.org/libdrm/$tarname
30 description="
31 Direct rendering manager.
33 libdrm provides core library routines for the X Window System to
34 directly interface with video hardware using the Linux Kernel's
35 Direct Rendering Modules.
38 homepage=http://cgit.freedesktop.org/mesa/drm/
39 license=MIT
41 # Source documentation
42 docsdir="${docdir}/${program}-${version}"
44 build()
46     set -e
48     unpack "${tardir}/$tarname"
50     cd "$srcdir"
52     # Set sane permissions
53     chmod -R u+w,go-w,a+rX-s .
55     # Apply a patch in order to compile against musl (Thanks to "Alpine Linux")
56     patch -Np1 -i "${worktree}/patches/libdrm/libdrm-ioctl.patch"
58     mkdir -p build
59     cd build
61     CFLAGS="$QICFLAGS" LDFLAGS="$QILDFLAGS" \
62     meson setup $configure_args \
63      --libdir /usr/lib${libSuffix} \
64      --buildtype=release \
65      --strip \
66      -Dudev=true \
67      -Dcairo-tests=false \
68      -Dvalgrind=false \
69      ..
71     ninja
72     DESTDIR="$destdir" ninja install
74     cd ..
76     # Compress and link man pages (if needed)
77     if test -d "${destdir}/$mandir"
78     then
79         (
80             cd "${destdir}/$mandir"
81             find . -type f -exec lzip -9 '{}' +
82             find . -type l | while read -r file
83             do
84                 ln -sf "$(readlink -- "$file").lz" "${file}.lz"
85                 rm -- "$file"
86             done
87         )
88     fi