libdrm: update to 2.4.103

This commit is contained in:
Juergen Daubert 2020-11-04 16:59:52 +01:00
parent 567dae0051
commit 5fe385b62c
2 changed files with 11 additions and 9 deletions

View File

@ -1,5 +1,5 @@
untrusted comment: verify with /etc/ports/xorg.pub
RWTSGWF5Q7TndB2/dzZOJ9lrM/RfxDUViF1q+oKVcPzCdlRmvuEB0Et+qxBbYsy4JJ7rfn2hx0Lnlm6cWkimXe78SfNy2bldIA4=
SHA256 (Pkgfile) = 7e6d2673997ae113e8a0545504a89d9535aa339fcfcd4ba979dc8258a55e7842
RWTSGWF5Q7TndMD5Ne7vtfQUvkJvtVuz2iVW9DPqiiFEIkMxTX3yPTQQPE8op8RQhAcnMG90+VJv6PUL/DZM72+A7BmUF4pJrgc=
SHA256 (Pkgfile) = bb6f28ba48ea9286fd2b3fa19d88c284c9fa98ede4374b3666efccc84c4339c3
SHA256 (.footprint) = c6dc07ce7fe377b8a3d62908bcb09696e9366d1831adaba084d3c8db6e1454d0
SHA256 (libdrm-2.4.102.tar.xz) = 8bcbf9336c28e393d76c1f16d7e79e394a7fce8a2e929d52d3ad7ad8525ba05b
SHA256 (libdrm-2.4.103.tar.xz) = 3fe0affdba6460166a7323290c18cf68e9b59edcb520722826cb244e9cb50222

View File

@ -4,16 +4,18 @@
# Depends on: meson ninja xorg-libpciaccess
name=libdrm
version=2.4.102
version=2.4.103
release=1
source=(https://dri.freedesktop.org/libdrm/libdrm-$version.tar.xz)
build() {
meson $name-$version build \
meson setup build $name-$version \
--prefix=/usr \
-Dman-pages=false \
-Dvalgrind=false \
-Dcairo-tests=false
--buildtype=plain \
-D man-pages=false \
-D valgrind=false \
-D cairo-tests=false
DESTDIR=$PKG ninja -C build -j ${JOBS:-1} install
meson compile -C build -j ${JOBS:-1}
DESTDIR=$PKG meson install -C build
}