recipes: Rename 'pkghashtag' variable to 'pkgcategory'
[dragora.git] / recipes / xorg / driver / xf86-video-intel / recipe
blob9fc46d51a014e058178c4855dfe069cd4799c7c6
1 # Build recipe for xf86-video-intel.
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=xorg-xf86-video-intel
19 pkgname=xf86-video-intel
20 version=20190927_c6cb1b19
21 release=1
23 # Define a category for the output of the package name
24 pkgcategory=xorg
26 tarname=${program}-${version}.tar.lz
28 # Remote source(s)
29 #fetch=http://anduin.linuxfromscratch.org/BLFS/xf86-video-intel/$tarname
30 fetch="
31   http://rsync.dragora.org/current/sources/$tarname
32   http://mirror.cedia.org.ec/dragora/current/sources/$tarname
35 description="
36 Video driver for the Xorg X server supporting Intel chipsets.
38 This package is part of X11.
41 homepage=http://github.com/freedesktop/xorg-xf86-video-intel/
42 license="MIT X Consortium"
44 # Source documentation
45 docs="AUTHORS COPYING NEWS README"
46 docsdir="${docdir}/${pkgname}-${version}"
48 build()
50     set -e
52     unpack "${tardir}/$tarname"
54     cd "$srcdir"
56     # Set sane permissions
57     chmod -R u+w,go-w,a+rX-s .
59     ./autogen.sh CFLAGS="$QICFLAGS" LDFLAGS="$QILDFLAGS -Wl,-z,lazy" \
60      $configure_args \
61      --libdir=/usr/lib${libSuffix} \
62      --mandir=$mandir \
63      --docdir=$docsdir \
64      --enable-static=no \
65      --enable-shared=yes \
66      --enable-kms-only \
67      --enable-uxa \
68      --build="$(cc -dumpmachine)"
70     make -j${jobs} V=1
71     make -j${jobs} DESTDIR="$destdir" install
73     # Compress and link man pages (if needed)
74     (
75         cd "${destdir}/$mandir"
76         find . -type f -exec lzip -9 '{}' +
77         find . -type l | while read -r file
78         do
79             ln -sf "$(readlink -- "$file").lz" "${file}.lz"
80             rm -- "$file"
81         done
82     )
84     # Copy documentation
85     mkdir -p "${destdir}${docsdir}"
86     cp -p $docs "${destdir}${docsdir}/"