libdrm: add option to build the intel driver
libpciaccess is not needed for libdrm itself, only the intel driver depends on it: https://cgit.freedesktop.org/mesa/drm/tree/meson.build#n240 Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
This commit is contained in:
parent
c1ce778dec
commit
d216b47dbf
2 changed files with 23 additions and 6 deletions
11
libs/libdrm/Config.in
Normal file
11
libs/libdrm/Config.in
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
menu "Select libdrm build options"
|
||||||
|
depends on PACKAGE_libdrm
|
||||||
|
|
||||||
|
config LIBDRM_INTEL
|
||||||
|
bool "Intel support"
|
||||||
|
default n
|
||||||
|
depends on x86_64 || i386
|
||||||
|
help
|
||||||
|
Installs the Intel driver.
|
||||||
|
|
||||||
|
endmenu
|
|
@ -16,6 +16,9 @@ PKG_HASH:=d66ad8b5c2441015ac1333e40137bb803c3bde3612ff040286fcc12158ea1bcb
|
||||||
PKG_MAINTAINER:=Lucian Cristian <lucian.cristian@gmail.com>
|
PKG_MAINTAINER:=Lucian Cristian <lucian.cristian@gmail.com>
|
||||||
PKG_LICENSE:=BSD-3-Clause
|
PKG_LICENSE:=BSD-3-Clause
|
||||||
|
|
||||||
|
PKG_CONFIG_DEPENDS:= \
|
||||||
|
CONFIG_LIBDRM_INTEL
|
||||||
|
|
||||||
PKG_INSTALL:=1
|
PKG_INSTALL:=1
|
||||||
PKG_BUILD_DEPENDS:=meson/host
|
PKG_BUILD_DEPENDS:=meson/host
|
||||||
|
|
||||||
|
@ -25,7 +28,7 @@ include ../../devel/meson/meson.mk
|
||||||
define Package/libdrm
|
define Package/libdrm
|
||||||
SECTION:=libs
|
SECTION:=libs
|
||||||
CATEGORY:=Libraries
|
CATEGORY:=Libraries
|
||||||
DEPENDS:=+libpciaccess
|
DEPENDS:=+LIBDRM_INTEL:libpciaccess
|
||||||
TITLE:=libdrm
|
TITLE:=libdrm
|
||||||
URL:=https://dri.freedesktop.org/
|
URL:=https://dri.freedesktop.org/
|
||||||
endef
|
endef
|
||||||
|
@ -36,9 +39,12 @@ define Package/libdrm/description
|
||||||
of the DRI protocol.
|
of the DRI protocol.
|
||||||
endef
|
endef
|
||||||
|
|
||||||
|
define Package/libdrm/config
|
||||||
|
source "$(SOURCE)/Config.in"
|
||||||
|
endef
|
||||||
|
|
||||||
MESON_ARGS += \
|
MESON_ARGS += \
|
||||||
-Dlibkms=false \
|
$(if $(CONFIG_LIBDRM_INTEL),-Dintel=true -Dlibkms=true,-Dintel=false -Dlibkms=false) \
|
||||||
-Dintel=false \
|
|
||||||
-Dradeon=false \
|
-Dradeon=false \
|
||||||
-Damdgpu=false \
|
-Damdgpu=false \
|
||||||
-Dnouveau=false \
|
-Dnouveau=false \
|
||||||
|
@ -60,14 +66,14 @@ define Build/InstallDev
|
||||||
$(INSTALL_DIR) $(1)/usr/include
|
$(INSTALL_DIR) $(1)/usr/include
|
||||||
$(CP) $(PKG_INSTALL_DIR)/usr/include/*.h $(1)/usr/include/
|
$(CP) $(PKG_INSTALL_DIR)/usr/include/*.h $(1)/usr/include/
|
||||||
$(INSTALL_DIR) $(1)/usr/lib
|
$(INSTALL_DIR) $(1)/usr/lib
|
||||||
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libdrm.so* $(1)/usr/lib/
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/lib*.so* $(1)/usr/lib/
|
||||||
$(INSTALL_DIR) $(1)/usr/lib/pkgconfig
|
$(INSTALL_DIR) $(1)/usr/lib/pkgconfig
|
||||||
$(CP) $(PKG_INSTALL_DIR)/usr/lib/pkgconfig/libdrm.pc $(1)/usr/lib/pkgconfig
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/pkgconfig/*.pc $(1)/usr/lib/pkgconfig
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define Package/libdrm/install
|
define Package/libdrm/install
|
||||||
$(INSTALL_DIR) $(1)/usr/lib
|
$(INSTALL_DIR) $(1)/usr/lib
|
||||||
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libdrm.so.* $(1)/usr/lib/
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/lib*.so.* $(1)/usr/lib/
|
||||||
endef
|
endef
|
||||||
|
|
||||||
$(eval $(call BuildPackage,libdrm))
|
$(eval $(call BuildPackage,libdrm))
|
||||||
|
|
Loading…
Reference in a new issue