mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-01 21:23:51 -09:00
https://lists.x.org/archives/xorg-announce/2026-March/003674.html Added sha256 hash provided by upstream. Signed-off-by: Bernd Kuhls <bernd@kuhls.net> Signed-off-by: Julien Olivain <ju.o@free.fr>
23 lines
672 B
Makefile
23 lines
672 B
Makefile
################################################################################
|
|
#
|
|
# libpciaccess
|
|
#
|
|
################################################################################
|
|
|
|
LIBPCIACCESS_VERSION = 0.19
|
|
LIBPCIACCESS_SOURCE = libpciaccess-$(LIBPCIACCESS_VERSION).tar.xz
|
|
LIBPCIACCESS_SITE = http://xorg.freedesktop.org/releases/individual/lib
|
|
LIBPCIACCESS_LICENSE = MIT
|
|
LIBPCIACCESS_LICENSE_FILES = COPYING
|
|
LIBPCIACCESS_INSTALL_STAGING = YES
|
|
LIBPCIACCESS_DEPENDENCIES = host-pkgconf
|
|
|
|
ifeq ($(BR2_PACKAGE_ZLIB),y)
|
|
LIBPCIACCESS_CONF_OPTS += -Dzlib=enabled
|
|
LIBPCIACCESS_DEPENDENCIES += zlib
|
|
else
|
|
LIBPCIACCESS_CONF_OPTS += -Dzlib=disabled
|
|
endif
|
|
|
|
$(eval $(meson-package))
|