CRUX-ARM : Home

Home :: Documentation :: Download :: Development :: Community :: Ports :: Packages :: Bugs :: Links :: About :: Donors
libdrm: updated to 2.4.104. Restored exynos, omap and tegra support
[ports/xorg-arm64.git] / libdrm / Pkgfile
CommitLineData
b2e30a60
VM
1# Description: Userspace interface to kernel DRM services
2# URL: http://dri.freedesktop.org/
3# Maintainer: CRUX Xorg Team, xorg-ports at crux dot nu
4# Arch Maintainer: CRUX-ARM System Team, devel at crux-arm dot nu
5# Depends on: libpthread-stubs xorg-libpciaccess
6
7name=libdrm
74ffe3ae 8version=2.4.104
b2e30a60 9release=1
98d8f473 10source=(http://dri.freedesktop.org/libdrm/libdrm-$version.tar.xz)
b2e30a60
VM
11
12build() {
13 cd $name-$version
14
98d8f473
VM
15meson build \
16 --prefix=/usr \
17 -Dman-pages=false \
18 -Dvalgrind=false \
19 -Dcairo-tests=false \
20 -Dintel=false \
21 -Dradeon=false \
22 -Dnouveau=false \
23 -Dvmwgfx=false \
24 -Damdgpu=false \
74ffe3ae
VM
25 -Domap=true \
26 -Dexynos=true \
27 -Dtegra=true
b2e30a60 28
98d8f473 29 DESTDIR=$PKG ninja -C build -j ${JOBS:-1} install
b2e30a60 30}